diff --git a/libs/backend/package.json b/libs/backend/package.json index f5e81a993..fddef834f 100644 --- a/libs/backend/package.json +++ b/libs/backend/package.json @@ -44,7 +44,9 @@ "debug": "^4.3.2", "micromatch": "^4.0.5", "readline": "^1.3.0", + "stream-chain": "^2.2.5", "stream-chopper": "^3.0.1", + "stream-json": "^1.7.5", "zod": "3.14.4" }, "devDependencies": { @@ -52,7 +54,9 @@ "@types/jest": "^27.0.3", "@types/micromatch": "^4.0.2", "@types/node": "16.11.29", + "@types/stream-chain": "^2.0.1", "@types/stream-chopper": "workspace:*", + "@types/stream-json": "^1.7.3", "@types/tmp": "^0.2.3", "@typescript-eslint/eslint-plugin": "^5.37.0", "@typescript-eslint/parser": "^5.37.0", diff --git a/libs/backend/src/cast_vote_record_report_import.test.ts b/libs/backend/src/cast_vote_record_report_import.test.ts new file mode 100644 index 000000000..0940f4ab9 --- /dev/null +++ b/libs/backend/src/cast_vote_record_report_import.test.ts @@ -0,0 +1,164 @@ +import { assert } from '@votingworks/basics'; +import { electionMinimalExhaustiveSampleFixtures } from '@votingworks/fixtures'; +import { unsafeParse, CVR } from '@votingworks/types'; +import { CAST_VOTE_RECORD_REPORT_FILENAME } from '@votingworks/utils'; +import { rmSync, writeFileSync } from 'fs'; +import { join } from 'path'; +import { + getCastVoteRecordReportImport, + validateCastVoteRecordReportDirectoryStructure, +} from './cast_vote_record_report_import'; +import { + CVR_BALLOT_IMAGES_SUBDIRECTORY, + CVR_BALLOT_LAYOUTS_SUBDIRECTORY, +} from './scan'; + +const cdfCvrReport = + electionMinimalExhaustiveSampleFixtures.standardCdfCvrReport; + +describe('getCastVoteRecordReportImport', () => { + test('imports a valid cast vote record report', async () => { + const castVoteRecordImportResult = await getCastVoteRecordReportImport( + join(cdfCvrReport.asDirectoryPath(), CAST_VOTE_RECORD_REPORT_FILENAME) + ); + + expect(castVoteRecordImportResult.isOk()).toBeTruthy(); + const castVoteRecordImport = castVoteRecordImportResult.ok(); + assert(castVoteRecordImport); + + const { CVR: unparsedCastVoteRecords } = castVoteRecordImport; + + let cvrCount = 0; + for await (const unparsedCastVoteRecord of unparsedCastVoteRecords) { + unsafeParse(CVR.CVRSchema, unparsedCastVoteRecord); + cvrCount += 1; + } + expect(cvrCount).toEqual(3000); + }); + + test('returns a parsing error if report metadata is invalid', async () => { + const mockReportDirectoryPath = cdfCvrReport.asDirectoryPath(); + writeFileSync( + join(mockReportDirectoryPath, CAST_VOTE_RECORD_REPORT_FILENAME), + '{}' + ); + const castVoteRecordImportResult = await getCastVoteRecordReportImport( + join(mockReportDirectoryPath, CAST_VOTE_RECORD_REPORT_FILENAME) + ); + + expect(castVoteRecordImportResult.isErr()).toBeTruthy(); + const error = castVoteRecordImportResult.err(); + assert(error); + expect(error.issues).toMatchObject( + expect.arrayContaining([ + expect.objectContaining({ + code: 'invalid_literal', + expected: 'CVR.CastVoteRecordReport', + path: ['@type'], + }), + ]) + ); + }); +}); + +describe('validateCastVoteRecordReportDirectoryStructure', () => { + test('returns ballot images on success validation', async () => { + const validationResult = + await validateCastVoteRecordReportDirectoryStructure( + cdfCvrReport.asDirectoryPath() + ); + expect(validationResult.isOk()).toBeTruthy(); + expect(validationResult.ok()).toMatchInlineSnapshot(` + Array [ + "batch-1/1M__precinct-1__1.jpg", + "batch-1/1M__precinct-2__1.jpg", + "batch-1/2F__precinct-1__1.jpg", + "batch-1/2F__precinct-2__1.jpg", + ] + `); + }); + + test('success with no ballot images', async () => { + const directoryPath = cdfCvrReport.asDirectoryPath(); + rmSync(join(directoryPath, CVR_BALLOT_IMAGES_SUBDIRECTORY), { + recursive: true, + force: true, + }); + const validationResult = + await validateCastVoteRecordReportDirectoryStructure(directoryPath); + expect(validationResult.isOk()).toBeTruthy(); + expect(validationResult.ok()).toEqual([]); + }); + + test('fails if missing a ballot layout', async () => { + const directoryPath = cdfCvrReport.asDirectoryPath(); + rmSync( + join( + directoryPath, + CVR_BALLOT_LAYOUTS_SUBDIRECTORY, + 'batch-1', + '1M__precinct-1__1.layout.json' + ) + ); + const validationResult = + await validateCastVoteRecordReportDirectoryStructure(directoryPath); + expect(validationResult.isErr()).toBeTruthy(); + expect(validationResult.err()).toMatchObject({ + type: 'missing-layouts', + }); + }); + + test('fails if missing all ballot layouts', async () => { + const directoryPath = cdfCvrReport.asDirectoryPath(); + rmSync(join(directoryPath, CVR_BALLOT_LAYOUTS_SUBDIRECTORY), { + recursive: true, + force: true, + }); + const validationResult = + await validateCastVoteRecordReportDirectoryStructure(directoryPath); + expect(validationResult.isErr()).toBeTruthy(); + expect(validationResult.err()).toMatchObject({ type: 'missing-layouts' }); + }); + + test('fails if no report', async () => { + const directoryPath = cdfCvrReport.asDirectoryPath(); + rmSync(join(directoryPath, CAST_VOTE_RECORD_REPORT_FILENAME)); + const validationResult = + await validateCastVoteRecordReportDirectoryStructure(directoryPath); + expect(validationResult.isErr()).toBeTruthy(); + expect(validationResult.err()).toMatchObject({ type: 'missing-report' }); + }); + + test('fails if invalid root', async () => { + const validationResult = + await validateCastVoteRecordReportDirectoryStructure('/tmp/no-entity'); + expect(validationResult.isErr()).toBeTruthy(); + expect(validationResult.err()).toMatchObject({ type: 'invalid-directory' }); + }); + + test('fails if ballot layout directory is somehow invalid', async () => { + const directoryPath = cdfCvrReport.asDirectoryPath(); + rmSync(join(directoryPath, CVR_BALLOT_LAYOUTS_SUBDIRECTORY), { + recursive: true, + force: true, + }); + writeFileSync(join(directoryPath, CVR_BALLOT_LAYOUTS_SUBDIRECTORY), ''); + const validationResult = + await validateCastVoteRecordReportDirectoryStructure(directoryPath); + expect(validationResult.isErr()).toBeTruthy(); + expect(validationResult.err()).toMatchObject({ type: 'invalid-directory' }); + }); + + test('fails if ballot images directory is somehow invalid', async () => { + const directoryPath = cdfCvrReport.asDirectoryPath(); + rmSync(join(directoryPath, CVR_BALLOT_IMAGES_SUBDIRECTORY), { + recursive: true, + force: true, + }); + writeFileSync(join(directoryPath, CVR_BALLOT_IMAGES_SUBDIRECTORY), ''); + const validationResult = + await validateCastVoteRecordReportDirectoryStructure(directoryPath); + expect(validationResult.isErr()).toBeTruthy(); + expect(validationResult.err()).toMatchObject({ type: 'invalid-directory' }); + }); +}); diff --git a/libs/backend/src/cast_vote_record_report_import.ts b/libs/backend/src/cast_vote_record_report_import.ts new file mode 100644 index 000000000..99eeb212e --- /dev/null +++ b/libs/backend/src/cast_vote_record_report_import.ts @@ -0,0 +1,225 @@ +import * as fs from 'fs'; +import { CVR, safeParse } from '@votingworks/types'; +import { ok, err, Result } from '@votingworks/basics'; +import { chain } from 'stream-chain'; +import { parser } from 'stream-json'; +import { pick } from 'stream-json/filters/Pick'; +import { ignore } from 'stream-json/filters/Ignore'; +import { streamArray } from 'stream-json/streamers/StreamArray'; +import Assembler from 'stream-json/Assembler'; +import { z } from 'zod'; +import { CAST_VOTE_RECORD_REPORT_FILENAME } from '@votingworks/utils'; +import { join, parse, relative } from 'path'; +import { + FileSystemEntryType, + listDirectory, + ListDirectoryError, + listDirectoryRecursive, +} from './list_directory'; +import { + CVR_BALLOT_IMAGES_SUBDIRECTORY, + CVR_BALLOT_LAYOUTS_SUBDIRECTORY, +} from './scan'; + +/** + * Variant of {@link CastVoteRecordReport} in which the `CVR` array is replaced + * by an asynchronous generator that can be iterated through - and parsed - as + * needed. + */ +export type CastVoteRecordReportImport = Omit< + CVR.CastVoteRecordReport, + 'CVR' +> & { + CVR: AsyncGenerator; +}; + +/** + * Given the path to a JSON CDF cast vote record report, will return a + * {@link CastVoteRecordReportImport}. The report, excluding the cast vote + * records themselves, will be parsed upon calling this method. Parsing errors + * will be returned. Parsing the cast vote records that are yielded + * asynchronously is the responsibility of the caller. + */ +export async function getCastVoteRecordReportImport( + reportPath: string +): Promise> { + const metadataPipeline = chain([ + fs.createReadStream(reportPath), + parser(), + ignore({ filter: 'CVR' }), + ]); + + const metadataAssembler = Assembler.connectTo(metadataPipeline); + const metadataPromise = new Promise((resolve) => { + metadataAssembler.on('done', () => { + resolve(metadataAssembler.current); + }); + }); + + const metadataParseResult = safeParse( + CVR.CastVoteRecordReportSchema, + await metadataPromise + ); + + if (metadataParseResult.isErr()) { + return err(metadataParseResult.err()); + } + + const cvrPipeline = chain([ + fs.createReadStream(reportPath), + parser(), + pick({ filter: 'CVR' }), + streamArray(), + (data) => data.value, + ]); + + async function* castVoteRecordGenerator() { + for await (const cvr of cvrPipeline) { + yield cvr; + } + } + + return ok({ + ...metadataParseResult.ok(), + CVR: castVoteRecordGenerator(), + }); +} + +/** + * Errors that may occur when validating a cast vote record report directory. + */ +export type CastVoteRecordReportDirectoryStructureValidationError = + | { + type: 'invalid-directory'; + message: string; + } + | { type: 'missing-report'; message: string } + | { type: 'missing-layouts'; message: string }; + +/** + * Result of validating the cast vote record report directory structure. + * Either a list of relative ballot image file paths or an error. + */ +export type ValidateCastVoteRecordReportDirectoryStructureResult = Result< + string[], + CastVoteRecordReportDirectoryStructureValidationError +>; + +function invalidDirectoryError( + error: ListDirectoryError +): ValidateCastVoteRecordReportDirectoryStructureResult { + return err({ + type: 'invalid-directory', + message: error.message, + }); +} + +/** + * Validates that the directory fits the structure expected of a cast vote + * record report directory. If successful, returns a list of the contained + * ballot images with paths relative to the ballot images root. If not + * successful, returns {@link CastVoteRecordReportDirectoryStructureValidationError}. + * This does *not* validate that all ballot images referenced in the report are + * included in the directory, only that all ballot images have accompanying layouts. + */ +export async function validateCastVoteRecordReportDirectoryStructure( + directoryAbsolutePath: string +): Promise { + const listDirectoryRootResult = await listDirectory(directoryAbsolutePath); + if (listDirectoryRootResult.isErr()) { + return invalidDirectoryError(listDirectoryRootResult.err()); + } + + const rootFileEntries = listDirectoryRootResult.ok(); + + const reportFileEntry = rootFileEntries.find( + (fileEntry) => fileEntry.name === CAST_VOTE_RECORD_REPORT_FILENAME + ); + if (!reportFileEntry) { + return err({ + type: 'missing-report', + message: `Expected a cast vote record report with filename ${CAST_VOTE_RECORD_REPORT_FILENAME} but none was found.`, + }); + } + + const ballotImageDirectoryEntry = rootFileEntries.find( + (fileEntry) => fileEntry.name === CVR_BALLOT_IMAGES_SUBDIRECTORY + ); + + if (!ballotImageDirectoryEntry) { + return ok([]); + } + + const ballotLayoutsDirectoryEntry = rootFileEntries.find( + (fileEntry) => fileEntry.name === CVR_BALLOT_LAYOUTS_SUBDIRECTORY + ); + + if (!ballotLayoutsDirectoryEntry) { + return err({ + type: 'missing-layouts', + message: + 'Expected ballot images to be accompanied by ballot layouts, but none were found.', + }); + } + + const listBallotImageContentsResultsGenerator = listDirectoryRecursive( + join(directoryAbsolutePath, CVR_BALLOT_IMAGES_SUBDIRECTORY) + ); + const relativeImagePaths: string[] = []; + for await (const result of listBallotImageContentsResultsGenerator) { + if (result.isErr()) { + return invalidDirectoryError(result.err()); + } + const fileEntry = result.ok(); + if ( + fileEntry.type !== FileSystemEntryType.Directory && + (fileEntry.name.endsWith('.jpg') || fileEntry.name.endsWith('.jpeg')) + ) { + relativeImagePaths.push( + relative( + join(directoryAbsolutePath, CVR_BALLOT_IMAGES_SUBDIRECTORY), + fileEntry.path + ) + ); + } + } + + const listBallotLayoutContentsResultGenerator = listDirectoryRecursive( + join(directoryAbsolutePath, CVR_BALLOT_LAYOUTS_SUBDIRECTORY) + ); + const relativeLayoutPaths: string[] = []; + for await (const result of listBallotLayoutContentsResultGenerator) { + if (result.isErr()) { + return invalidDirectoryError(result.err()); + } + const fileEntry = result.ok(); + if ( + fileEntry.type !== FileSystemEntryType.Directory && + fileEntry.name.endsWith('.layout.json') + ) { + relativeLayoutPaths.push( + relative( + join(directoryAbsolutePath, CVR_BALLOT_LAYOUTS_SUBDIRECTORY), + fileEntry.path + ) + ); + } + } + + for (const relativeImagePath of relativeImagePaths) { + const imagePathParts = parse(relativeImagePath); + const hasCorrespondingLayout = relativeLayoutPaths.some( + (relativeLayoutPath) => + relativeLayoutPath === + `${join(imagePathParts.dir, imagePathParts.name)}.layout.json` + ); + if (!hasCorrespondingLayout) { + return err({ + type: 'missing-layouts', + message: `Expected ballot image "${relativeImagePath}" to be accompanied by a ballot layout, but none was found.`, + }); + } + } + + return ok(relativeImagePaths); +} diff --git a/libs/backend/src/index.ts b/libs/backend/src/index.ts index 217e2745c..a9c878e3f 100644 --- a/libs/backend/src/index.ts +++ b/libs/backend/src/index.ts @@ -4,3 +4,4 @@ export * from './get_usb_drives'; export * from './scan'; export * from './split'; export * from './list_directory'; +export * from './cast_vote_record_report_import'; diff --git a/libs/backend/src/list_directory.test.ts b/libs/backend/src/list_directory.test.ts index f610a5f75..6ec5f820e 100644 --- a/libs/backend/src/list_directory.test.ts +++ b/libs/backend/src/list_directory.test.ts @@ -1,3 +1,4 @@ +import { iter } from '@votingworks/basics'; import { mockOf } from '@votingworks/test-utils'; import tmp from 'tmp'; import { getUsbDrives } from './get_usb_drives'; @@ -5,6 +6,7 @@ import { FileSystemEntryType, listDirectory, listDirectoryOnUsbDrive, + listDirectoryRecursive, } from './list_directory'; jest.mock('./get_usb_drives'); @@ -13,9 +15,7 @@ const getUsbDrivesMock = mockOf(getUsbDrives); describe('listDirectory', () => { test('happy path', async () => { - const directory = tmp.dirSync({ - dir: '/tmp', - }); + const directory = tmp.dirSync(); tmp.fileSync({ name: 'file-1', dir: directory.name }); tmp.fileSync({ name: 'file-2', dir: directory.name }); tmp.dirSync({ @@ -60,6 +60,47 @@ describe('listDirectory', () => { }); }); +describe(listDirectoryRecursive, () => { + test('happy path', async () => { + const directory = tmp.dirSync(); + tmp.fileSync({ name: 'file-1', dir: directory.name }); + tmp.fileSync({ name: 'file-2', dir: directory.name }); + const subDirectory = tmp.dirSync({ + name: 'subdirectory', + dir: directory.name, + }); + tmp.fileSync({ name: 'sub-file-2', dir: subDirectory.name }); + + const fileEntries = iter(listDirectoryRecursive(directory.name)).map( + (result) => result.ok() + ); + + expect(await fileEntries.toArray()).toMatchObject([ + expect.objectContaining({ + name: 'file-1', + type: FileSystemEntryType.File, + }), + expect.objectContaining({ + name: 'file-2', + type: FileSystemEntryType.File, + }), + expect.objectContaining({ + name: 'sub-file-2', + type: FileSystemEntryType.File, + }), + expect.objectContaining({ + name: 'subdirectory', + type: FileSystemEntryType.Directory, + }), + ]); + }); + + test('bubbles up root errors', () => { + const results = iter(listDirectoryRecursive('/tmp/no-entity')); + expect(results.some((result) => result.isErr())).toBeTruthy(); + }); +}); + describe('listDirectoryOnUsbDrive', () => { test('happy path', async () => { const mockMountPoint = tmp.dirSync(); diff --git a/libs/backend/src/list_directory.ts b/libs/backend/src/list_directory.ts index 3cbb50dc7..171677582 100644 --- a/libs/backend/src/list_directory.ts +++ b/libs/backend/src/list_directory.ts @@ -110,6 +110,26 @@ export async function listDirectory( } } +/** + * Get entries for a directory recursively, includes stat information for each entry. + * Requires that the path be absolute. Includes directories in result. + */ +export async function* listDirectoryRecursive( + path: string +): AsyncGenerator> { + const listRootResult = await listDirectory(path); + if (listRootResult.isErr()) { + yield listRootResult; + } else { + for (const fileEntry of listRootResult.ok()) { + if (fileEntry.type === FileSystemEntryType.Directory) { + yield* listDirectoryRecursive(fileEntry.path); + } + yield ok(fileEntry); + } + } +} + /** * Expected errors that can occur when trying to list directories on a USB drive. */ diff --git a/libs/cvr-fixture-generator/src/cli/generate/main.test.ts b/libs/cvr-fixture-generator/src/cli/generate/main.test.ts index 7772620ef..8df734c3a 100644 --- a/libs/cvr-fixture-generator/src/cli/generate/main.test.ts +++ b/libs/cvr-fixture-generator/src/cli/generate/main.test.ts @@ -1,11 +1,12 @@ import { electionMinimalExhaustiveSampleFixtures } from '@votingworks/fixtures'; import { fakeReadable, fakeWritable } from '@votingworks/test-utils'; -import { safeParseJson, CVR } from '@votingworks/types'; +import { safeParseJson, CVR, unsafeParse } from '@votingworks/types'; import { readFileSync } from 'fs'; import fs from 'fs/promises'; import { join, resolve } from 'path'; import { dirSync } from 'tmp'; import { CAST_VOTE_RECORD_REPORT_FILENAME } from '@votingworks/utils'; +import { getCastVoteRecordReportImport } from '@votingworks/backend'; import { assert } from '@votingworks/basics'; import { main } from './main'; import { BATCH_ID } from '../../utils'; @@ -137,11 +138,20 @@ test('generate with custom number of records above the suggested number', async stderr: '', }); - // TODO (drew): build utility for VxAdmin to stream in large JSON file - // to allow this to work. Currently it exceeds memory limits. + const castVoteRecordReportImport = ( + await getCastVoteRecordReportImport( + join(outputDirectory.name, CAST_VOTE_RECORD_REPORT_FILENAME) + ) + ).assertOk('generated cast vote record should be valid'); + + let cvrCount = 0; + for await (const unparsedCastVoteRecord of castVoteRecordReportImport.CVR) { + const castVoteRecord = unsafeParse(CVR.CVRSchema, unparsedCastVoteRecord); + expect(castVoteRecord.UniqueId).toEqual(`${cvrCount}`); + cvrCount += 1; + } - // const report = reportFromFile(outputFile.name); - // expect(report.CVR).toHaveLength(3000); + expect(cvrCount).toEqual(3000); }); test('generate live mode CVRs', async () => { diff --git a/libs/cvr-fixture-generator/src/cli/generate/main.ts b/libs/cvr-fixture-generator/src/cli/generate/main.ts index e50c86c88..e912fa4aa 100644 --- a/libs/cvr-fixture-generator/src/cli/generate/main.ts +++ b/libs/cvr-fixture-generator/src/cli/generate/main.ts @@ -171,7 +171,7 @@ export async function main( assert(castVoteRecord); // we need each cast vote record to have a unique id - const newCastVoteRecord = replaceUniqueId(castVoteRecord, `id-${ballotId}`); + const newCastVoteRecord = replaceUniqueId(castVoteRecord, `${ballotId}`); // clone deep so jsonStream util will not detect circular references castVoteRecords.push(cloneDeep(newCastVoteRecord)); @@ -291,7 +291,7 @@ export async function main( assetType: 'layout', }) ), - JSON.stringify(layout, undefined, 2) + `${JSON.stringify(layout, undefined, 2)}\n` ); } } diff --git a/libs/fixtures/build_resources.sh b/libs/fixtures/build_resources.sh new file mode 100644 index 000000000..6d3d31638 --- /dev/null +++ b/libs/fixtures/build_resources.sh @@ -0,0 +1,4 @@ +./node_modules/.bin/res-to-ts --rootDir data --outDir src/data \ + 'data/**/*.{csv,jsonl,json,txt,jpeg,jpg,png,pdf,xml,zip}' \ + '!data/**/cdf-cvr-files/**/*.{csv,jsonl,json,txt,jpeg,jpg,png,pdf,xml,zip}' \ + 'data/**/cdf-cvr-files/*' \ No newline at end of file diff --git a/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-images/batch-1/1M__precinct-1__1.jpg b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-images/batch-1/1M__precinct-1__1.jpg new file mode 100644 index 000000000..eabab33e6 Binary files /dev/null and b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-images/batch-1/1M__precinct-1__1.jpg differ diff --git a/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-images/batch-1/1M__precinct-2__1.jpg b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-images/batch-1/1M__precinct-2__1.jpg new file mode 100644 index 000000000..0a741cb8a Binary files /dev/null and b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-images/batch-1/1M__precinct-2__1.jpg differ diff --git a/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-images/batch-1/2F__precinct-1__1.jpg b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-images/batch-1/2F__precinct-1__1.jpg new file mode 100644 index 000000000..969dc4b02 Binary files /dev/null and b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-images/batch-1/2F__precinct-1__1.jpg differ diff --git a/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-images/batch-1/2F__precinct-2__1.jpg b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-images/batch-1/2F__precinct-2__1.jpg new file mode 100644 index 000000000..f4aa19152 Binary files /dev/null and b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-images/batch-1/2F__precinct-2__1.jpg differ diff --git a/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-layouts/batch-1/1M__precinct-1__1.layout.json b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-layouts/batch-1/1M__precinct-1__1.layout.json new file mode 100644 index 000000000..fe4af1b2c --- /dev/null +++ b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-layouts/batch-1/1M__precinct-1__1.layout.json @@ -0,0 +1,295 @@ +{ + "pageSize": { + "width": 1224, + "height": 1584 + }, + "metadata": { + "electionHash": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "precinctId": "precinct-1", + "ballotStyleId": "1M", + "locales": { + "primary": "en-US" + }, + "pageNumber": 1, + "isTestMode": true, + "ballotType": 0 + }, + "contests": [ + { + "bounds": { + "x": 429, + "y": 43, + "width": 366, + "height": 334 + }, + "corners": [ + { + "x": 429, + "y": 43 + }, + { + "x": 794, + "y": 43 + }, + { + "x": 429, + "y": 376 + }, + { + "x": 794, + "y": 376 + } + ], + "options": [ + { + "bounds": { + "x": 429, + "y": 163, + "width": 366, + "height": 69 + }, + "target": { + "bounds": { + "x": 454, + "y": 165, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 167, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 232, + "width": 366, + "height": 70 + }, + "target": { + "bounds": { + "x": 454, + "y": 234, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 236, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 302, + "width": 366, + "height": 73 + }, + "target": { + "bounds": { + "x": 454, + "y": 304, + "width": 32, + "height": 22 + }, + "inner": { + "x": 456, + "y": 306, + "width": 28, + "height": 18 + } + } + } + ] + }, + { + "bounds": { + "x": 429, + "y": 397, + "width": 366, + "height": 580 + }, + "corners": [ + { + "x": 429, + "y": 397 + }, + { + "x": 794, + "y": 397 + }, + { + "x": 429, + "y": 976 + }, + { + "x": 794, + "y": 976 + } + ], + "options": [ + { + "bounds": { + "x": 429, + "y": 517, + "width": 366, + "height": 69 + }, + "target": { + "bounds": { + "x": 454, + "y": 519, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 521, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 586, + "width": 366, + "height": 70 + }, + "target": { + "bounds": { + "x": 454, + "y": 588, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 590, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 656, + "width": 366, + "height": 71 + }, + "target": { + "bounds": { + "x": 454, + "y": 658, + "width": 32, + "height": 22 + }, + "inner": { + "x": 456, + "y": 660, + "width": 28, + "height": 18 + } + } + }, + { + "bounds": { + "x": 429, + "y": 727, + "width": 366, + "height": 69 + }, + "target": { + "bounds": { + "x": 454, + "y": 729, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 731, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 796, + "width": 366, + "height": 55 + }, + "target": { + "bounds": { + "x": 454, + "y": 798, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 800, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 851, + "width": 366, + "height": 56 + }, + "target": { + "bounds": { + "x": 454, + "y": 853, + "width": 32, + "height": 22 + }, + "inner": { + "x": 456, + "y": 855, + "width": 28, + "height": 18 + } + } + }, + { + "bounds": { + "x": 429, + "y": 907, + "width": 366, + "height": 68 + }, + "target": { + "bounds": { + "x": 454, + "y": 909, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 911, + "width": 28, + "height": 17 + } + } + } + ] + } + ] +} diff --git a/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-layouts/batch-1/1M__precinct-2__1.layout.json b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-layouts/batch-1/1M__precinct-2__1.layout.json new file mode 100644 index 000000000..28539dfb8 --- /dev/null +++ b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-layouts/batch-1/1M__precinct-2__1.layout.json @@ -0,0 +1,295 @@ +{ + "pageSize": { + "width": 1224, + "height": 1584 + }, + "metadata": { + "electionHash": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "precinctId": "precinct-2", + "ballotStyleId": "1M", + "locales": { + "primary": "en-US" + }, + "pageNumber": 1, + "isTestMode": true, + "ballotType": 0 + }, + "contests": [ + { + "bounds": { + "x": 429, + "y": 43, + "width": 366, + "height": 334 + }, + "corners": [ + { + "x": 429, + "y": 43 + }, + { + "x": 794, + "y": 43 + }, + { + "x": 429, + "y": 376 + }, + { + "x": 794, + "y": 376 + } + ], + "options": [ + { + "bounds": { + "x": 429, + "y": 163, + "width": 366, + "height": 69 + }, + "target": { + "bounds": { + "x": 454, + "y": 165, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 167, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 232, + "width": 366, + "height": 70 + }, + "target": { + "bounds": { + "x": 454, + "y": 234, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 236, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 302, + "width": 366, + "height": 73 + }, + "target": { + "bounds": { + "x": 454, + "y": 304, + "width": 32, + "height": 22 + }, + "inner": { + "x": 456, + "y": 306, + "width": 28, + "height": 18 + } + } + } + ] + }, + { + "bounds": { + "x": 429, + "y": 397, + "width": 366, + "height": 580 + }, + "corners": [ + { + "x": 429, + "y": 397 + }, + { + "x": 794, + "y": 397 + }, + { + "x": 429, + "y": 976 + }, + { + "x": 794, + "y": 976 + } + ], + "options": [ + { + "bounds": { + "x": 429, + "y": 517, + "width": 366, + "height": 69 + }, + "target": { + "bounds": { + "x": 454, + "y": 519, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 521, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 586, + "width": 366, + "height": 70 + }, + "target": { + "bounds": { + "x": 454, + "y": 588, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 590, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 656, + "width": 366, + "height": 71 + }, + "target": { + "bounds": { + "x": 454, + "y": 658, + "width": 32, + "height": 22 + }, + "inner": { + "x": 456, + "y": 660, + "width": 28, + "height": 18 + } + } + }, + { + "bounds": { + "x": 429, + "y": 727, + "width": 366, + "height": 69 + }, + "target": { + "bounds": { + "x": 454, + "y": 729, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 731, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 796, + "width": 366, + "height": 55 + }, + "target": { + "bounds": { + "x": 454, + "y": 798, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 800, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 851, + "width": 366, + "height": 56 + }, + "target": { + "bounds": { + "x": 454, + "y": 853, + "width": 32, + "height": 22 + }, + "inner": { + "x": 456, + "y": 855, + "width": 28, + "height": 18 + } + } + }, + { + "bounds": { + "x": 429, + "y": 907, + "width": 366, + "height": 68 + }, + "target": { + "bounds": { + "x": 454, + "y": 909, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 911, + "width": 28, + "height": 17 + } + } + } + ] + } + ] +} diff --git a/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-layouts/batch-1/2F__precinct-1__1.layout.json b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-layouts/batch-1/2F__precinct-1__1.layout.json new file mode 100644 index 000000000..7fb7c7946 --- /dev/null +++ b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-layouts/batch-1/2F__precinct-1__1.layout.json @@ -0,0 +1,251 @@ +{ + "pageSize": { + "width": 1224, + "height": 1584 + }, + "metadata": { + "electionHash": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "precinctId": "precinct-1", + "ballotStyleId": "2F", + "locales": { + "primary": "en-US" + }, + "pageNumber": 1, + "isTestMode": true, + "ballotType": 0 + }, + "contests": [ + { + "bounds": { + "x": 429, + "y": 43, + "width": 366, + "height": 263 + }, + "corners": [ + { + "x": 429, + "y": 43 + }, + { + "x": 794, + "y": 43 + }, + { + "x": 429, + "y": 305 + }, + { + "x": 794, + "y": 305 + } + ], + "options": [ + { + "bounds": { + "x": 429, + "y": 163, + "width": 366, + "height": 69 + }, + "target": { + "bounds": { + "x": 454, + "y": 165, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 167, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 232, + "width": 366, + "height": 72 + }, + "target": { + "bounds": { + "x": 454, + "y": 234, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 236, + "width": 28, + "height": 17 + } + } + } + ] + }, + { + "bounds": { + "x": 429, + "y": 327, + "width": 366, + "height": 524 + }, + "corners": [ + { + "x": 429, + "y": 327 + }, + { + "x": 794, + "y": 327 + }, + { + "x": 429, + "y": 850 + }, + { + "x": 794, + "y": 850 + } + ], + "options": [ + { + "bounds": { + "x": 429, + "y": 446, + "width": 366, + "height": 71 + }, + "target": { + "bounds": { + "x": 454, + "y": 448, + "width": 32, + "height": 22 + }, + "inner": { + "x": 456, + "y": 450, + "width": 28, + "height": 18 + } + } + }, + { + "bounds": { + "x": 429, + "y": 517, + "width": 366, + "height": 69 + }, + "target": { + "bounds": { + "x": 454, + "y": 519, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 521, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 586, + "width": 366, + "height": 70 + }, + "target": { + "bounds": { + "x": 454, + "y": 588, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 590, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 656, + "width": 366, + "height": 71 + }, + "target": { + "bounds": { + "x": 454, + "y": 658, + "width": 32, + "height": 22 + }, + "inner": { + "x": 456, + "y": 660, + "width": 28, + "height": 18 + } + } + }, + { + "bounds": { + "x": 429, + "y": 727, + "width": 366, + "height": 55 + }, + "target": { + "bounds": { + "x": 454, + "y": 729, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 731, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 782, + "width": 366, + "height": 67 + }, + "target": { + "bounds": { + "x": 454, + "y": 784, + "width": 32, + "height": 22 + }, + "inner": { + "x": 456, + "y": 786, + "width": 28, + "height": 18 + } + } + } + ] + } + ] +} diff --git a/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-layouts/batch-1/2F__precinct-2__1.layout.json b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-layouts/batch-1/2F__precinct-2__1.layout.json new file mode 100644 index 000000000..71a015343 --- /dev/null +++ b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/ballot-layouts/batch-1/2F__precinct-2__1.layout.json @@ -0,0 +1,251 @@ +{ + "pageSize": { + "width": 1224, + "height": 1584 + }, + "metadata": { + "electionHash": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "precinctId": "precinct-2", + "ballotStyleId": "2F", + "locales": { + "primary": "en-US" + }, + "pageNumber": 1, + "isTestMode": true, + "ballotType": 0 + }, + "contests": [ + { + "bounds": { + "x": 429, + "y": 43, + "width": 366, + "height": 263 + }, + "corners": [ + { + "x": 429, + "y": 43 + }, + { + "x": 794, + "y": 43 + }, + { + "x": 429, + "y": 305 + }, + { + "x": 794, + "y": 305 + } + ], + "options": [ + { + "bounds": { + "x": 429, + "y": 163, + "width": 366, + "height": 69 + }, + "target": { + "bounds": { + "x": 454, + "y": 165, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 167, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 232, + "width": 366, + "height": 72 + }, + "target": { + "bounds": { + "x": 454, + "y": 234, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 236, + "width": 28, + "height": 17 + } + } + } + ] + }, + { + "bounds": { + "x": 429, + "y": 327, + "width": 366, + "height": 524 + }, + "corners": [ + { + "x": 429, + "y": 327 + }, + { + "x": 794, + "y": 327 + }, + { + "x": 429, + "y": 850 + }, + { + "x": 794, + "y": 850 + } + ], + "options": [ + { + "bounds": { + "x": 429, + "y": 446, + "width": 366, + "height": 71 + }, + "target": { + "bounds": { + "x": 454, + "y": 448, + "width": 32, + "height": 22 + }, + "inner": { + "x": 456, + "y": 450, + "width": 28, + "height": 18 + } + } + }, + { + "bounds": { + "x": 429, + "y": 517, + "width": 366, + "height": 69 + }, + "target": { + "bounds": { + "x": 454, + "y": 519, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 521, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 586, + "width": 366, + "height": 70 + }, + "target": { + "bounds": { + "x": 454, + "y": 588, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 590, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 656, + "width": 366, + "height": 71 + }, + "target": { + "bounds": { + "x": 454, + "y": 658, + "width": 32, + "height": 22 + }, + "inner": { + "x": 456, + "y": 660, + "width": 28, + "height": 18 + } + } + }, + { + "bounds": { + "x": 429, + "y": 727, + "width": 366, + "height": 55 + }, + "target": { + "bounds": { + "x": 454, + "y": 729, + "width": 32, + "height": 21 + }, + "inner": { + "x": 456, + "y": 731, + "width": 28, + "height": 17 + } + } + }, + { + "bounds": { + "x": 429, + "y": 782, + "width": 366, + "height": 67 + }, + "target": { + "bounds": { + "x": 454, + "y": 784, + "width": 32, + "height": 22 + }, + "inner": { + "x": 456, + "y": 786, + "width": 28, + "height": 18 + } + } + } + ] + } + ] +} diff --git a/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/cast-vote-record-report.json b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/cast-vote-record-report.json new file mode 100644 index 000000000..af0060324 --- /dev/null +++ b/libs/fixtures/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard/cast-vote-record-report.json @@ -0,0 +1,382450 @@ +{ + "@type": "CVR.CastVoteRecordReport", + "Version": "1.0.0", + "ReportType": ["originating-device-export", "other"], + "OtherReportType": "test", + "GeneratedDate": "2023-03-15T19:51:45.279Z", + "ReportGeneratingDeviceIds": ["scanner"], + "ReportingDevice": [ + { + "@type": "CVR.ReportingDevice", + "@id": "scanner", + "SerialNumber": "scanner", + "Manufacturer": "VotingWorks" + } + ], + "Party": [ + { + "@type": "CVR.Party", + "@id": "0", + "Name": "Mammal Party", + "Abbreviation": "Ma" + }, + { + "@type": "CVR.Party", + "@id": "1", + "Name": "Fish Party", + "Abbreviation": "F" + } + ], + "Election": [ + { + "@type": "CVR.Election", + "@id": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "Name": "Example Primary Election", + "Candidate": [ + { "@type": "CVR.Candidate", "@id": "horse", "Name": "Horse" }, + { "@type": "CVR.Candidate", "@id": "otter", "Name": "Otter" }, + { "@type": "CVR.Candidate", "@id": "fox", "Name": "Fox" }, + { "@type": "CVR.Candidate", "@id": "seahorse", "Name": "Seahorse" }, + { "@type": "CVR.Candidate", "@id": "salmon", "Name": "Salmon" }, + { "@type": "CVR.Candidate", "@id": "zebra", "Name": "Zebra" }, + { "@type": "CVR.Candidate", "@id": "lion", "Name": "Lion" }, + { "@type": "CVR.Candidate", "@id": "kangaroo", "Name": "Kangaroo" }, + { "@type": "CVR.Candidate", "@id": "elephant", "Name": "Elephant" }, + { "@type": "CVR.Candidate", "@id": "manta-ray", "Name": "Manta Ray" }, + { "@type": "CVR.Candidate", "@id": "pufferfish", "Name": "Pufferfish" }, + { "@type": "CVR.Candidate", "@id": "rockfish", "Name": "Rockfish" }, + { + "@type": "CVR.Candidate", + "@id": "triggerfish", + "Name": "Triggerfish" + } + ], + "Contest": [ + { + "@id": "best-animal-mammal", + "@type": "CVR.CandidateContest", + "Name": "Best Animal", + "VotesAllowed": 1, + "ContestSelection": [ + { + "@id": "horse", + "@type": "CVR.CandidateSelection", + "CandidateIds": ["horse"] + }, + { + "@id": "otter", + "@type": "CVR.CandidateSelection", + "CandidateIds": ["otter"] + }, + { + "@id": "fox", + "@type": "CVR.CandidateSelection", + "CandidateIds": ["fox"] + } + ], + "PrimaryPartyId": "0" + }, + { + "@id": "best-animal-fish", + "@type": "CVR.CandidateContest", + "Name": "Best Animal", + "VotesAllowed": 1, + "ContestSelection": [ + { + "@id": "seahorse", + "@type": "CVR.CandidateSelection", + "CandidateIds": ["seahorse"] + }, + { + "@id": "salmon", + "@type": "CVR.CandidateSelection", + "CandidateIds": ["salmon"] + } + ], + "PrimaryPartyId": "1" + }, + { + "@id": "zoo-council-mammal", + "@type": "CVR.CandidateContest", + "Name": "Zoo Council", + "VotesAllowed": 3, + "ContestSelection": [ + { + "@id": "zebra", + "@type": "CVR.CandidateSelection", + "CandidateIds": ["zebra"] + }, + { + "@id": "lion", + "@type": "CVR.CandidateSelection", + "CandidateIds": ["lion"] + }, + { + "@id": "kangaroo", + "@type": "CVR.CandidateSelection", + "CandidateIds": ["kangaroo"] + }, + { + "@id": "elephant", + "@type": "CVR.CandidateSelection", + "CandidateIds": ["elephant"] + }, + { + "@type": "CVR.CandidateSelection", + "@id": "write-in-0", + "IsWriteIn": true + }, + { + "@type": "CVR.CandidateSelection", + "@id": "write-in-1", + "IsWriteIn": true + }, + { + "@type": "CVR.CandidateSelection", + "@id": "write-in-2", + "IsWriteIn": true + } + ], + "PrimaryPartyId": "0" + }, + { + "@id": "aquarium-council-fish", + "@type": "CVR.CandidateContest", + "Name": "Zoo Council", + "VotesAllowed": 2, + "ContestSelection": [ + { + "@id": "manta-ray", + "@type": "CVR.CandidateSelection", + "CandidateIds": ["manta-ray"] + }, + { + "@id": "pufferfish", + "@type": "CVR.CandidateSelection", + "CandidateIds": ["pufferfish"] + }, + { + "@id": "rockfish", + "@type": "CVR.CandidateSelection", + "CandidateIds": ["rockfish"] + }, + { + "@id": "triggerfish", + "@type": "CVR.CandidateSelection", + "CandidateIds": ["triggerfish"] + }, + { + "@type": "CVR.CandidateSelection", + "@id": "write-in-0", + "IsWriteIn": true + }, + { + "@type": "CVR.CandidateSelection", + "@id": "write-in-1", + "IsWriteIn": true + } + ], + "PrimaryPartyId": "1" + }, + { + "@id": "new-zoo-either", + "@type": "CVR.BallotMeasureContest", + "Name": "Ballot Measure 1", + "ContestSelection": [ + { + "@type": "CVR.BallotMeasureSelection", + "@id": "yes", + "Selection": "yes" + }, + { + "@type": "CVR.BallotMeasureSelection", + "@id": "no", + "Selection": "no" + } + ] + }, + { + "@id": "new-zoo-pick", + "@type": "CVR.BallotMeasureContest", + "Name": "Ballot Measure 1", + "ContestSelection": [ + { + "@type": "CVR.BallotMeasureSelection", + "@id": "yes", + "Selection": "yes" + }, + { + "@type": "CVR.BallotMeasureSelection", + "@id": "no", + "Selection": "no" + } + ] + }, + { + "@id": "fishing", + "@type": "CVR.BallotMeasureContest", + "Name": "Ballot Measure 3", + "ContestSelection": [ + { + "@type": "CVR.BallotMeasureSelection", + "@id": "yes", + "Selection": "yes" + }, + { + "@type": "CVR.BallotMeasureSelection", + "@id": "no", + "Selection": "no" + } + ] + } + ], + "ElectionScopeId": "election-state" + } + ], + "GpUnit": [ + { + "@type": "CVR.GpUnit", + "@id": "precinct-1", + "Type": "precinct", + "Name": "Precinct 1" + }, + { + "@type": "CVR.GpUnit", + "@id": "precinct-2", + "Type": "precinct", + "Name": "Precinct 2" + }, + { + "@type": "CVR.GpUnit", + "@id": "election-county", + "Type": "other", + "Name": "Sample County" + }, + { + "@type": "CVR.GpUnit", + "@id": "election-state", + "Type": "other", + "Name": "State of Sample" + } + ], + "vxBatch": [ + { + "@type": "CVR.vxBatch", + "@id": "batch-1", + "BatchLabel": "Batch 1", + "SequenceId": 1, + "StartTime": "2023-03-15T19:51:45.279Z", + "NumberSheets": 3000, + "CreatingDeviceId": "scanner" + } + ], + "CVR": [ + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "0-modified", + "UniqueId": "0", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "0-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1-modified", + "UniqueId": "1", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2-modified", + "UniqueId": "2", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "3-modified", + "UniqueId": "3", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "3-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "4-modified", + "UniqueId": "4", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "4-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "5-modified", + "UniqueId": "5", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "5-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "6-modified", + "UniqueId": "6", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "6-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "7-modified", + "UniqueId": "7", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "7-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "8-modified", + "UniqueId": "8", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "8-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "9-modified", + "UniqueId": "9", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "9-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "10-modified", + "UniqueId": "10", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "10-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "11-modified", + "UniqueId": "11", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "11-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "12-modified", + "UniqueId": "12", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "12-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "13-modified", + "UniqueId": "13", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "13-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "14-modified", + "UniqueId": "14", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "14-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "15-modified", + "UniqueId": "15", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "15-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "16-modified", + "UniqueId": "16", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "16-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "17-modified", + "UniqueId": "17", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "17-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "18-modified", + "UniqueId": "18", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "18-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "19-modified", + "UniqueId": "19", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "19-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "20-modified", + "UniqueId": "20", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "20-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "21-modified", + "UniqueId": "21", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "21-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "22-modified", + "UniqueId": "22", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "22-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "23-modified", + "UniqueId": "23", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "23-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "24-modified", + "UniqueId": "24", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "24-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "25-modified", + "UniqueId": "25", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "25-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "26-modified", + "UniqueId": "26", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "26-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "27-modified", + "UniqueId": "27", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "27-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "28-modified", + "UniqueId": "28", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "28-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "29-modified", + "UniqueId": "29", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "29-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "30-modified", + "UniqueId": "30", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "30-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "31-modified", + "UniqueId": "31", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "31-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "32-modified", + "UniqueId": "32", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "32-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "33-modified", + "UniqueId": "33", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "33-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "34-modified", + "UniqueId": "34", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "34-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "35-modified", + "UniqueId": "35", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "35-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "36-modified", + "UniqueId": "36", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "36-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "37-modified", + "UniqueId": "37", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "37-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "38-modified", + "UniqueId": "38", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "38-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "39-modified", + "UniqueId": "39", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "39-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "40-modified", + "UniqueId": "40", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "40-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "41-modified", + "UniqueId": "41", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "41-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "42-modified", + "UniqueId": "42", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "42-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "43-modified", + "UniqueId": "43", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "43-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "44-modified", + "UniqueId": "44", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "44-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "45-modified", + "UniqueId": "45", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "45-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "46-modified", + "UniqueId": "46", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "46-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "47-modified", + "UniqueId": "47", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "47-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "48-modified", + "UniqueId": "48", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "48-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "49-modified", + "UniqueId": "49", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "49-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "50-modified", + "UniqueId": "50", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "50-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "51-modified", + "UniqueId": "51", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "51-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "52-modified", + "UniqueId": "52", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "52-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "53-modified", + "UniqueId": "53", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "53-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "54-modified", + "UniqueId": "54", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "54-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "55-modified", + "UniqueId": "55", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "55-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "56-modified", + "UniqueId": "56", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "56-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "57-modified", + "UniqueId": "57", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "57-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "58-modified", + "UniqueId": "58", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "58-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "59-modified", + "UniqueId": "59", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "59-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "60-modified", + "UniqueId": "60", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "60-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "61-modified", + "UniqueId": "61", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "61-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "62-modified", + "UniqueId": "62", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "62-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "63-modified", + "UniqueId": "63", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "63-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "64-modified", + "UniqueId": "64", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "64-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "65-modified", + "UniqueId": "65", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "65-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "66-modified", + "UniqueId": "66", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "66-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "67-modified", + "UniqueId": "67", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "67-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "68-modified", + "UniqueId": "68", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "68-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "69-modified", + "UniqueId": "69", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "69-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "70-modified", + "UniqueId": "70", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "70-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "71-modified", + "UniqueId": "71", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "71-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "72-modified", + "UniqueId": "72", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "72-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "73-modified", + "UniqueId": "73", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "73-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "74-modified", + "UniqueId": "74", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "74-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "75-modified", + "UniqueId": "75", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "75-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "76-modified", + "UniqueId": "76", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "76-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "77-modified", + "UniqueId": "77", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "77-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "78-modified", + "UniqueId": "78", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "78-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "79-modified", + "UniqueId": "79", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "79-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "80-modified", + "UniqueId": "80", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "80-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "81-modified", + "UniqueId": "81", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "81-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "82-modified", + "UniqueId": "82", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "82-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "83-modified", + "UniqueId": "83", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "83-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "84-modified", + "UniqueId": "84", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "84-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "85-modified", + "UniqueId": "85", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "85-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "86-modified", + "UniqueId": "86", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "86-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "87-modified", + "UniqueId": "87", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "87-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "88-modified", + "UniqueId": "88", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "88-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "89-modified", + "UniqueId": "89", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "89-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "90-modified", + "UniqueId": "90", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "90-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "91-modified", + "UniqueId": "91", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "91-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "92-modified", + "UniqueId": "92", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "92-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "93-modified", + "UniqueId": "93", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "93-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "94-modified", + "UniqueId": "94", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "94-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "95-modified", + "UniqueId": "95", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "95-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "96-modified", + "UniqueId": "96", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "96-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "97-modified", + "UniqueId": "97", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "97-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "98-modified", + "UniqueId": "98", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "98-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "99-modified", + "UniqueId": "99", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "99-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "100-modified", + "UniqueId": "100", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "100-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "101-modified", + "UniqueId": "101", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "101-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "102-modified", + "UniqueId": "102", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "102-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "103-modified", + "UniqueId": "103", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "103-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "104-modified", + "UniqueId": "104", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "104-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "105-modified", + "UniqueId": "105", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "105-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "106-modified", + "UniqueId": "106", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "106-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "107-modified", + "UniqueId": "107", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "107-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "108-modified", + "UniqueId": "108", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "108-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "109-modified", + "UniqueId": "109", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "109-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "110-modified", + "UniqueId": "110", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "110-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "111-modified", + "UniqueId": "111", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "111-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "112-modified", + "UniqueId": "112", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "112-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "113-modified", + "UniqueId": "113", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "113-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "114-modified", + "UniqueId": "114", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "114-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "115-modified", + "UniqueId": "115", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "115-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "116-modified", + "UniqueId": "116", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "116-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "117-modified", + "UniqueId": "117", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "117-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "118-modified", + "UniqueId": "118", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "118-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "119-modified", + "UniqueId": "119", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "119-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "120-modified", + "UniqueId": "120", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "120-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "121-modified", + "UniqueId": "121", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "121-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "122-modified", + "UniqueId": "122", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "122-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "123-modified", + "UniqueId": "123", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "123-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "124-modified", + "UniqueId": "124", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "124-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "125-modified", + "UniqueId": "125", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "125-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "126-modified", + "UniqueId": "126", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "126-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "127-modified", + "UniqueId": "127", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "127-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "128-modified", + "UniqueId": "128", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "128-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "129-modified", + "UniqueId": "129", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "129-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "130-modified", + "UniqueId": "130", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "130-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "131-modified", + "UniqueId": "131", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "131-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "132-modified", + "UniqueId": "132", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "132-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "133-modified", + "UniqueId": "133", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "133-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "134-modified", + "UniqueId": "134", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "134-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "135-modified", + "UniqueId": "135", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "135-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "136-modified", + "UniqueId": "136", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "136-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "137-modified", + "UniqueId": "137", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "137-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "138-modified", + "UniqueId": "138", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "138-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "139-modified", + "UniqueId": "139", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "139-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "140-modified", + "UniqueId": "140", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "140-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "141-modified", + "UniqueId": "141", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "141-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "142-modified", + "UniqueId": "142", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "142-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "143-modified", + "UniqueId": "143", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "143-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "144-modified", + "UniqueId": "144", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "144-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "145-modified", + "UniqueId": "145", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "145-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "146-modified", + "UniqueId": "146", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "146-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "147-modified", + "UniqueId": "147", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "147-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "148-modified", + "UniqueId": "148", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "148-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "149-modified", + "UniqueId": "149", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "149-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "150-modified", + "UniqueId": "150", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "150-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "151-modified", + "UniqueId": "151", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "151-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "152-modified", + "UniqueId": "152", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "152-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "153-modified", + "UniqueId": "153", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "153-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "154-modified", + "UniqueId": "154", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "154-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "155-modified", + "UniqueId": "155", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "155-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "156-modified", + "UniqueId": "156", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "156-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "157-modified", + "UniqueId": "157", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "157-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "158-modified", + "UniqueId": "158", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "158-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "159-modified", + "UniqueId": "159", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "159-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "160-modified", + "UniqueId": "160", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "160-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "161-modified", + "UniqueId": "161", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "161-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "162-modified", + "UniqueId": "162", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "162-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "163-modified", + "UniqueId": "163", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "163-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "164-modified", + "UniqueId": "164", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "164-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "165-modified", + "UniqueId": "165", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "165-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "166-modified", + "UniqueId": "166", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "166-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "167-modified", + "UniqueId": "167", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "167-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "168-modified", + "UniqueId": "168", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "168-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "169-modified", + "UniqueId": "169", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "169-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "170-modified", + "UniqueId": "170", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "170-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "171-modified", + "UniqueId": "171", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "171-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "172-modified", + "UniqueId": "172", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "172-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "173-modified", + "UniqueId": "173", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "173-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "174-modified", + "UniqueId": "174", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "174-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "175-modified", + "UniqueId": "175", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "175-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "176-modified", + "UniqueId": "176", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "176-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "177-modified", + "UniqueId": "177", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "177-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "178-modified", + "UniqueId": "178", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "178-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "179-modified", + "UniqueId": "179", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "179-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "180-modified", + "UniqueId": "180", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "180-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "181-modified", + "UniqueId": "181", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "181-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "182-modified", + "UniqueId": "182", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "182-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "183-modified", + "UniqueId": "183", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "183-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "184-modified", + "UniqueId": "184", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "184-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "185-modified", + "UniqueId": "185", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "185-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "186-modified", + "UniqueId": "186", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "186-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "187-modified", + "UniqueId": "187", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "187-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "188-modified", + "UniqueId": "188", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "188-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "189-modified", + "UniqueId": "189", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "189-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "190-modified", + "UniqueId": "190", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "190-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "191-modified", + "UniqueId": "191", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "191-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "192-modified", + "UniqueId": "192", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "192-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "193-modified", + "UniqueId": "193", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "193-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "194-modified", + "UniqueId": "194", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "194-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "195-modified", + "UniqueId": "195", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "195-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "196-modified", + "UniqueId": "196", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "196-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "197-modified", + "UniqueId": "197", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "197-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "198-modified", + "UniqueId": "198", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "198-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "199-modified", + "UniqueId": "199", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "199-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "200-modified", + "UniqueId": "200", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "200-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "201-modified", + "UniqueId": "201", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "201-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "202-modified", + "UniqueId": "202", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "202-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "203-modified", + "UniqueId": "203", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "203-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "204-modified", + "UniqueId": "204", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "204-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "205-modified", + "UniqueId": "205", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "205-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "206-modified", + "UniqueId": "206", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "206-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "207-modified", + "UniqueId": "207", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "207-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "208-modified", + "UniqueId": "208", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "208-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "209-modified", + "UniqueId": "209", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "209-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "210-modified", + "UniqueId": "210", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "210-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "211-modified", + "UniqueId": "211", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "211-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "212-modified", + "UniqueId": "212", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "212-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "213-modified", + "UniqueId": "213", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "213-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "214-modified", + "UniqueId": "214", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "214-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "215-modified", + "UniqueId": "215", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "215-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "216-modified", + "UniqueId": "216", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "216-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "217-modified", + "UniqueId": "217", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "217-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "218-modified", + "UniqueId": "218", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "218-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "219-modified", + "UniqueId": "219", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "219-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "220-modified", + "UniqueId": "220", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "220-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "221-modified", + "UniqueId": "221", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "221-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "222-modified", + "UniqueId": "222", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "222-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "223-modified", + "UniqueId": "223", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "223-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "224-modified", + "UniqueId": "224", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "224-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "225-modified", + "UniqueId": "225", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "225-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "226-modified", + "UniqueId": "226", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "226-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "227-modified", + "UniqueId": "227", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "227-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "228-modified", + "UniqueId": "228", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "228-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "229-modified", + "UniqueId": "229", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "229-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "230-modified", + "UniqueId": "230", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "230-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "231-modified", + "UniqueId": "231", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "231-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "232-modified", + "UniqueId": "232", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "232-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "233-modified", + "UniqueId": "233", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "233-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "234-modified", + "UniqueId": "234", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "234-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "235-modified", + "UniqueId": "235", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "235-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "236-modified", + "UniqueId": "236", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "236-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "237-modified", + "UniqueId": "237", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "237-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "238-modified", + "UniqueId": "238", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "238-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "239-modified", + "UniqueId": "239", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "239-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "240-modified", + "UniqueId": "240", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "240-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "241-modified", + "UniqueId": "241", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "241-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "242-modified", + "UniqueId": "242", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "242-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "243-modified", + "UniqueId": "243", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "243-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "244-modified", + "UniqueId": "244", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "244-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "245-modified", + "UniqueId": "245", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "245-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "246-modified", + "UniqueId": "246", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "246-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "247-modified", + "UniqueId": "247", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "247-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "248-modified", + "UniqueId": "248", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "248-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "249-modified", + "UniqueId": "249", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "249-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "250-modified", + "UniqueId": "250", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "250-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "251-modified", + "UniqueId": "251", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "251-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "252-modified", + "UniqueId": "252", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "252-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "253-modified", + "UniqueId": "253", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "253-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "254-modified", + "UniqueId": "254", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "254-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "255-modified", + "UniqueId": "255", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "255-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "256-modified", + "UniqueId": "256", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "256-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "257-modified", + "UniqueId": "257", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "257-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "258-modified", + "UniqueId": "258", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "258-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "259-modified", + "UniqueId": "259", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "259-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "260-modified", + "UniqueId": "260", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "260-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "261-modified", + "UniqueId": "261", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "261-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "262-modified", + "UniqueId": "262", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "262-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "263-modified", + "UniqueId": "263", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "263-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "264-modified", + "UniqueId": "264", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "264-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "265-modified", + "UniqueId": "265", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "265-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "266-modified", + "UniqueId": "266", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "266-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "267-modified", + "UniqueId": "267", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "267-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "268-modified", + "UniqueId": "268", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "268-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "269-modified", + "UniqueId": "269", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "269-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "270-modified", + "UniqueId": "270", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "270-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "271-modified", + "UniqueId": "271", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "271-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "272-modified", + "UniqueId": "272", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "272-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "273-modified", + "UniqueId": "273", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "273-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "274-modified", + "UniqueId": "274", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "274-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "275-modified", + "UniqueId": "275", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "275-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "276-modified", + "UniqueId": "276", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "276-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "277-modified", + "UniqueId": "277", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "277-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "278-modified", + "UniqueId": "278", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "278-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "279-modified", + "UniqueId": "279", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "279-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "280-modified", + "UniqueId": "280", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "280-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "281-modified", + "UniqueId": "281", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "281-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "282-modified", + "UniqueId": "282", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "282-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "283-modified", + "UniqueId": "283", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "283-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "284-modified", + "UniqueId": "284", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "284-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "285-modified", + "UniqueId": "285", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "285-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "286-modified", + "UniqueId": "286", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "286-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "287-modified", + "UniqueId": "287", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "287-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "288-modified", + "UniqueId": "288", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "288-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "289-modified", + "UniqueId": "289", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "289-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "290-modified", + "UniqueId": "290", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "290-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "291-modified", + "UniqueId": "291", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "291-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "292-modified", + "UniqueId": "292", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "292-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "293-modified", + "UniqueId": "293", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "293-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "294-modified", + "UniqueId": "294", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "294-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "295-modified", + "UniqueId": "295", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "295-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "296-modified", + "UniqueId": "296", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "296-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "297-modified", + "UniqueId": "297", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "297-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "298-modified", + "UniqueId": "298", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "298-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "299-modified", + "UniqueId": "299", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "299-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "300-modified", + "UniqueId": "300", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "300-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "301-modified", + "UniqueId": "301", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "301-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "302-modified", + "UniqueId": "302", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "302-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "303-modified", + "UniqueId": "303", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "303-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "304-modified", + "UniqueId": "304", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "304-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "305-modified", + "UniqueId": "305", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "305-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "306-modified", + "UniqueId": "306", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "306-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "307-modified", + "UniqueId": "307", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "307-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "308-modified", + "UniqueId": "308", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "308-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "309-modified", + "UniqueId": "309", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "309-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "310-modified", + "UniqueId": "310", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "310-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "311-modified", + "UniqueId": "311", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "311-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "312-modified", + "UniqueId": "312", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "312-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "313-modified", + "UniqueId": "313", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "313-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "314-modified", + "UniqueId": "314", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "314-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "315-modified", + "UniqueId": "315", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "315-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "316-modified", + "UniqueId": "316", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "316-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "317-modified", + "UniqueId": "317", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "317-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "318-modified", + "UniqueId": "318", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "318-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "319-modified", + "UniqueId": "319", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "319-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "320-modified", + "UniqueId": "320", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "320-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "321-modified", + "UniqueId": "321", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "321-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "322-modified", + "UniqueId": "322", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "322-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "323-modified", + "UniqueId": "323", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "323-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "324-modified", + "UniqueId": "324", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "324-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "325-modified", + "UniqueId": "325", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "325-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "326-modified", + "UniqueId": "326", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "326-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "327-modified", + "UniqueId": "327", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "327-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "328-modified", + "UniqueId": "328", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "328-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "329-modified", + "UniqueId": "329", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "329-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "330-modified", + "UniqueId": "330", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "330-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "331-modified", + "UniqueId": "331", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "331-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "332-modified", + "UniqueId": "332", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "332-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "333-modified", + "UniqueId": "333", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "333-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "334-modified", + "UniqueId": "334", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "334-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "335-modified", + "UniqueId": "335", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "335-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "336-modified", + "UniqueId": "336", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "336-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "337-modified", + "UniqueId": "337", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "337-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "338-modified", + "UniqueId": "338", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "338-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "339-modified", + "UniqueId": "339", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "339-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "340-modified", + "UniqueId": "340", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "340-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "341-modified", + "UniqueId": "341", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "341-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "342-modified", + "UniqueId": "342", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "342-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "343-modified", + "UniqueId": "343", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "343-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "344-modified", + "UniqueId": "344", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "344-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "345-modified", + "UniqueId": "345", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "345-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "346-modified", + "UniqueId": "346", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "346-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "347-modified", + "UniqueId": "347", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "347-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "348-modified", + "UniqueId": "348", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "348-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "349-modified", + "UniqueId": "349", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "349-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "350-modified", + "UniqueId": "350", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "350-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "351-modified", + "UniqueId": "351", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "351-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "352-modified", + "UniqueId": "352", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "352-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "353-modified", + "UniqueId": "353", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "353-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "354-modified", + "UniqueId": "354", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "354-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "355-modified", + "UniqueId": "355", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "355-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "356-modified", + "UniqueId": "356", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "356-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "357-modified", + "UniqueId": "357", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "357-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "358-modified", + "UniqueId": "358", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "358-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "359-modified", + "UniqueId": "359", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "359-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "360-modified", + "UniqueId": "360", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "360-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "361-modified", + "UniqueId": "361", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "361-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "362-modified", + "UniqueId": "362", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "362-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "363-modified", + "UniqueId": "363", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "363-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "364-modified", + "UniqueId": "364", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "364-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "365-modified", + "UniqueId": "365", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "365-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "366-modified", + "UniqueId": "366", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "366-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "367-modified", + "UniqueId": "367", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "367-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "368-modified", + "UniqueId": "368", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "368-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "369-modified", + "UniqueId": "369", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "369-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "370-modified", + "UniqueId": "370", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "370-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "371-modified", + "UniqueId": "371", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "371-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "372-modified", + "UniqueId": "372", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "372-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "373-modified", + "UniqueId": "373", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "373-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "374-modified", + "UniqueId": "374", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "374-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "375-modified", + "UniqueId": "375", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "375-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "376-modified", + "UniqueId": "376", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "376-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "377-modified", + "UniqueId": "377", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "377-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "378-modified", + "UniqueId": "378", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "378-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "379-modified", + "UniqueId": "379", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "379-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "380-modified", + "UniqueId": "380", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "380-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "381-modified", + "UniqueId": "381", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "381-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "382-modified", + "UniqueId": "382", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "382-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "383-modified", + "UniqueId": "383", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "383-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "384-modified", + "UniqueId": "384", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "384-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "385-modified", + "UniqueId": "385", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "385-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "386-modified", + "UniqueId": "386", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "386-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "387-modified", + "UniqueId": "387", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "387-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "388-modified", + "UniqueId": "388", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "388-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "389-modified", + "UniqueId": "389", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "389-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "390-modified", + "UniqueId": "390", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "390-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "391-modified", + "UniqueId": "391", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "391-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "392-modified", + "UniqueId": "392", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "392-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "393-modified", + "UniqueId": "393", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "393-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "394-modified", + "UniqueId": "394", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "394-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "395-modified", + "UniqueId": "395", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "395-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "396-modified", + "UniqueId": "396", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "396-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "397-modified", + "UniqueId": "397", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "397-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "398-modified", + "UniqueId": "398", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "398-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "399-modified", + "UniqueId": "399", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "399-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "400-modified", + "UniqueId": "400", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "400-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "401-modified", + "UniqueId": "401", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "401-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "402-modified", + "UniqueId": "402", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "402-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "403-modified", + "UniqueId": "403", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "403-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "404-modified", + "UniqueId": "404", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "404-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "405-modified", + "UniqueId": "405", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "405-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "406-modified", + "UniqueId": "406", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "406-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "407-modified", + "UniqueId": "407", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "407-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "408-modified", + "UniqueId": "408", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "408-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "409-modified", + "UniqueId": "409", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "409-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "410-modified", + "UniqueId": "410", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "410-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "411-modified", + "UniqueId": "411", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "411-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "412-modified", + "UniqueId": "412", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "412-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "413-modified", + "UniqueId": "413", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "413-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "414-modified", + "UniqueId": "414", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "414-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "415-modified", + "UniqueId": "415", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "415-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "416-modified", + "UniqueId": "416", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "416-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "417-modified", + "UniqueId": "417", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "417-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "418-modified", + "UniqueId": "418", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "418-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "419-modified", + "UniqueId": "419", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "419-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "420-modified", + "UniqueId": "420", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "420-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "421-modified", + "UniqueId": "421", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "421-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "422-modified", + "UniqueId": "422", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "422-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "423-modified", + "UniqueId": "423", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "423-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "424-modified", + "UniqueId": "424", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "424-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "425-modified", + "UniqueId": "425", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "425-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "426-modified", + "UniqueId": "426", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "426-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "427-modified", + "UniqueId": "427", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "427-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "428-modified", + "UniqueId": "428", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "428-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "429-modified", + "UniqueId": "429", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "429-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "430-modified", + "UniqueId": "430", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "430-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "431-modified", + "UniqueId": "431", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "431-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "432-modified", + "UniqueId": "432", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "432-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "433-modified", + "UniqueId": "433", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "433-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "434-modified", + "UniqueId": "434", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "434-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "435-modified", + "UniqueId": "435", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "435-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "436-modified", + "UniqueId": "436", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "436-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "437-modified", + "UniqueId": "437", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "437-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "438-modified", + "UniqueId": "438", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "438-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "439-modified", + "UniqueId": "439", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "439-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "440-modified", + "UniqueId": "440", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "440-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "441-modified", + "UniqueId": "441", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "441-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "442-modified", + "UniqueId": "442", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "442-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "443-modified", + "UniqueId": "443", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "443-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "444-modified", + "UniqueId": "444", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "444-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "445-modified", + "UniqueId": "445", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "445-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "446-modified", + "UniqueId": "446", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "446-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "447-modified", + "UniqueId": "447", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "447-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "448-modified", + "UniqueId": "448", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "448-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "449-modified", + "UniqueId": "449", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "449-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "450-modified", + "UniqueId": "450", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "450-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "451-modified", + "UniqueId": "451", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "451-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "452-modified", + "UniqueId": "452", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "452-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "453-modified", + "UniqueId": "453", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "453-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "454-modified", + "UniqueId": "454", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "454-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "455-modified", + "UniqueId": "455", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "455-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "456-modified", + "UniqueId": "456", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "456-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "457-modified", + "UniqueId": "457", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "457-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "458-modified", + "UniqueId": "458", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "458-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "459-modified", + "UniqueId": "459", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "459-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "460-modified", + "UniqueId": "460", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "460-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "461-modified", + "UniqueId": "461", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "461-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "462-modified", + "UniqueId": "462", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "462-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "463-modified", + "UniqueId": "463", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "463-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "464-modified", + "UniqueId": "464", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "464-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "465-modified", + "UniqueId": "465", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "465-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "466-modified", + "UniqueId": "466", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "466-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "467-modified", + "UniqueId": "467", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "467-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "468-modified", + "UniqueId": "468", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "468-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "469-modified", + "UniqueId": "469", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "469-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "470-modified", + "UniqueId": "470", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "470-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "471-modified", + "UniqueId": "471", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "471-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "472-modified", + "UniqueId": "472", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "472-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "473-modified", + "UniqueId": "473", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "473-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "474-modified", + "UniqueId": "474", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "474-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "475-modified", + "UniqueId": "475", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "475-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "476-modified", + "UniqueId": "476", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "476-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "477-modified", + "UniqueId": "477", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "477-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "478-modified", + "UniqueId": "478", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "478-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "479-modified", + "UniqueId": "479", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "479-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "480-modified", + "UniqueId": "480", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "480-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "481-modified", + "UniqueId": "481", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "481-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "482-modified", + "UniqueId": "482", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "482-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "483-modified", + "UniqueId": "483", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "483-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "484-modified", + "UniqueId": "484", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "484-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "485-modified", + "UniqueId": "485", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "485-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "486-modified", + "UniqueId": "486", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "486-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "487-modified", + "UniqueId": "487", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "487-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "488-modified", + "UniqueId": "488", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "488-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "489-modified", + "UniqueId": "489", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "489-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "490-modified", + "UniqueId": "490", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "490-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "491-modified", + "UniqueId": "491", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "491-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "492-modified", + "UniqueId": "492", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "492-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "493-modified", + "UniqueId": "493", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "493-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "494-modified", + "UniqueId": "494", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "494-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "495-modified", + "UniqueId": "495", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "495-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "496-modified", + "UniqueId": "496", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "496-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "497-modified", + "UniqueId": "497", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "497-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "498-modified", + "UniqueId": "498", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "498-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "499-modified", + "UniqueId": "499", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "499-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "500-modified", + "UniqueId": "500", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "500-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "501-modified", + "UniqueId": "501", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "501-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "502-modified", + "UniqueId": "502", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "502-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "503-modified", + "UniqueId": "503", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "503-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "504-modified", + "UniqueId": "504", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "504-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "505-modified", + "UniqueId": "505", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "505-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "506-modified", + "UniqueId": "506", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "506-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "507-modified", + "UniqueId": "507", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "507-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "508-modified", + "UniqueId": "508", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "508-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "509-modified", + "UniqueId": "509", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "509-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "510-modified", + "UniqueId": "510", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "510-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "511-modified", + "UniqueId": "511", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "511-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "512-modified", + "UniqueId": "512", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "512-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "513-modified", + "UniqueId": "513", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "513-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "514-modified", + "UniqueId": "514", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "514-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "515-modified", + "UniqueId": "515", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "515-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "516-modified", + "UniqueId": "516", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "516-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "517-modified", + "UniqueId": "517", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "517-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "518-modified", + "UniqueId": "518", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "518-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "519-modified", + "UniqueId": "519", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "519-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "520-modified", + "UniqueId": "520", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "520-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "521-modified", + "UniqueId": "521", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "521-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "522-modified", + "UniqueId": "522", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "522-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "523-modified", + "UniqueId": "523", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "523-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "524-modified", + "UniqueId": "524", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "524-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "525-modified", + "UniqueId": "525", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "525-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "526-modified", + "UniqueId": "526", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "526-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "527-modified", + "UniqueId": "527", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "527-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "528-modified", + "UniqueId": "528", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "528-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "529-modified", + "UniqueId": "529", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "529-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "530-modified", + "UniqueId": "530", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "530-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "531-modified", + "UniqueId": "531", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "531-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "532-modified", + "UniqueId": "532", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "532-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "533-modified", + "UniqueId": "533", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "533-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "534-modified", + "UniqueId": "534", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "534-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "535-modified", + "UniqueId": "535", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "535-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "536-modified", + "UniqueId": "536", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "536-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "537-modified", + "UniqueId": "537", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "537-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "538-modified", + "UniqueId": "538", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "538-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "539-modified", + "UniqueId": "539", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "539-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "540-modified", + "UniqueId": "540", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "540-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "541-modified", + "UniqueId": "541", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "541-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "542-modified", + "UniqueId": "542", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "542-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "543-modified", + "UniqueId": "543", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "543-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "544-modified", + "UniqueId": "544", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "544-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "545-modified", + "UniqueId": "545", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "545-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "546-modified", + "UniqueId": "546", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "546-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "547-modified", + "UniqueId": "547", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "547-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "548-modified", + "UniqueId": "548", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "548-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "549-modified", + "UniqueId": "549", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "549-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "550-modified", + "UniqueId": "550", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "550-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "551-modified", + "UniqueId": "551", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "551-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "552-modified", + "UniqueId": "552", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "552-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "553-modified", + "UniqueId": "553", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "553-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "554-modified", + "UniqueId": "554", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "554-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "555-modified", + "UniqueId": "555", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "555-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "556-modified", + "UniqueId": "556", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "556-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "557-modified", + "UniqueId": "557", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "557-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "558-modified", + "UniqueId": "558", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "558-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "559-modified", + "UniqueId": "559", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "559-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "560-modified", + "UniqueId": "560", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "560-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "561-modified", + "UniqueId": "561", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "561-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "562-modified", + "UniqueId": "562", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "562-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "563-modified", + "UniqueId": "563", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "563-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "564-modified", + "UniqueId": "564", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "564-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "565-modified", + "UniqueId": "565", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "565-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "566-modified", + "UniqueId": "566", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "566-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "567-modified", + "UniqueId": "567", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "567-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "568-modified", + "UniqueId": "568", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "568-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "569-modified", + "UniqueId": "569", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "569-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "570-modified", + "UniqueId": "570", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "570-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "571-modified", + "UniqueId": "571", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "571-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "572-modified", + "UniqueId": "572", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "572-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "573-modified", + "UniqueId": "573", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "573-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "574-modified", + "UniqueId": "574", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "574-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "575-modified", + "UniqueId": "575", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "575-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "576-modified", + "UniqueId": "576", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "576-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "577-modified", + "UniqueId": "577", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "577-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "578-modified", + "UniqueId": "578", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "578-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "579-modified", + "UniqueId": "579", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "579-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "580-modified", + "UniqueId": "580", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "580-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "581-modified", + "UniqueId": "581", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "581-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "582-modified", + "UniqueId": "582", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "582-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "583-modified", + "UniqueId": "583", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "583-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "584-modified", + "UniqueId": "584", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "584-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "585-modified", + "UniqueId": "585", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "585-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "586-modified", + "UniqueId": "586", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "586-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "587-modified", + "UniqueId": "587", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "587-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "588-modified", + "UniqueId": "588", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "588-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "589-modified", + "UniqueId": "589", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "589-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "590-modified", + "UniqueId": "590", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "590-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "591-modified", + "UniqueId": "591", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "591-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "592-modified", + "UniqueId": "592", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "592-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "593-modified", + "UniqueId": "593", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "593-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "594-modified", + "UniqueId": "594", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "594-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "595-modified", + "UniqueId": "595", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "595-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "596-modified", + "UniqueId": "596", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "596-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "597-modified", + "UniqueId": "597", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "597-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "598-modified", + "UniqueId": "598", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "598-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "599-modified", + "UniqueId": "599", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "599-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "600-modified", + "UniqueId": "600", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "600-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "601-modified", + "UniqueId": "601", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "601-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "602-modified", + "UniqueId": "602", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "602-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "603-modified", + "UniqueId": "603", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "603-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "604-modified", + "UniqueId": "604", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "604-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "605-modified", + "UniqueId": "605", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "605-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "606-modified", + "UniqueId": "606", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "606-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "607-modified", + "UniqueId": "607", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "607-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "608-modified", + "UniqueId": "608", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "608-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "609-modified", + "UniqueId": "609", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "609-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "610-modified", + "UniqueId": "610", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "610-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "611-modified", + "UniqueId": "611", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "611-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "612-modified", + "UniqueId": "612", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "612-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "613-modified", + "UniqueId": "613", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "613-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "614-modified", + "UniqueId": "614", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "614-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "615-modified", + "UniqueId": "615", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "615-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "616-modified", + "UniqueId": "616", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "616-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "617-modified", + "UniqueId": "617", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "617-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "618-modified", + "UniqueId": "618", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "618-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "619-modified", + "UniqueId": "619", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "619-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "620-modified", + "UniqueId": "620", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "620-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "621-modified", + "UniqueId": "621", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "621-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "622-modified", + "UniqueId": "622", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "622-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "623-modified", + "UniqueId": "623", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "623-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "624-modified", + "UniqueId": "624", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "624-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "625-modified", + "UniqueId": "625", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "625-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "626-modified", + "UniqueId": "626", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "626-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "627-modified", + "UniqueId": "627", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "627-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "628-modified", + "UniqueId": "628", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "628-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "629-modified", + "UniqueId": "629", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "629-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "630-modified", + "UniqueId": "630", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "630-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "631-modified", + "UniqueId": "631", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "631-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "632-modified", + "UniqueId": "632", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "632-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "633-modified", + "UniqueId": "633", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "633-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "634-modified", + "UniqueId": "634", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "634-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "635-modified", + "UniqueId": "635", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "635-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "636-modified", + "UniqueId": "636", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "636-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "637-modified", + "UniqueId": "637", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "637-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "638-modified", + "UniqueId": "638", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "638-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "639-modified", + "UniqueId": "639", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "639-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "640-modified", + "UniqueId": "640", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "640-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "641-modified", + "UniqueId": "641", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "641-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "642-modified", + "UniqueId": "642", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "642-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "643-modified", + "UniqueId": "643", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "643-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "644-modified", + "UniqueId": "644", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "644-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "645-modified", + "UniqueId": "645", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "645-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "646-modified", + "UniqueId": "646", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "646-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "647-modified", + "UniqueId": "647", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "647-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "648-modified", + "UniqueId": "648", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "648-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "649-modified", + "UniqueId": "649", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "649-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "650-modified", + "UniqueId": "650", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "650-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "651-modified", + "UniqueId": "651", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "651-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "652-modified", + "UniqueId": "652", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "652-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "653-modified", + "UniqueId": "653", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "653-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "654-modified", + "UniqueId": "654", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "654-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "655-modified", + "UniqueId": "655", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "655-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "656-modified", + "UniqueId": "656", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "656-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "657-modified", + "UniqueId": "657", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "657-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "658-modified", + "UniqueId": "658", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "658-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "659-modified", + "UniqueId": "659", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "659-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "660-modified", + "UniqueId": "660", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "660-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "661-modified", + "UniqueId": "661", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "661-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "662-modified", + "UniqueId": "662", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "662-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "663-modified", + "UniqueId": "663", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "663-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "664-modified", + "UniqueId": "664", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "664-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "665-modified", + "UniqueId": "665", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "665-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "666-modified", + "UniqueId": "666", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "666-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "667-modified", + "UniqueId": "667", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "667-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "668-modified", + "UniqueId": "668", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "668-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "669-modified", + "UniqueId": "669", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "669-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "670-modified", + "UniqueId": "670", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "670-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "671-modified", + "UniqueId": "671", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "671-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "672-modified", + "UniqueId": "672", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "672-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "673-modified", + "UniqueId": "673", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "673-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "674-modified", + "UniqueId": "674", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "674-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "675-modified", + "UniqueId": "675", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "675-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "676-modified", + "UniqueId": "676", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "676-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "677-modified", + "UniqueId": "677", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "677-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "678-modified", + "UniqueId": "678", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "678-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "679-modified", + "UniqueId": "679", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "679-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "680-modified", + "UniqueId": "680", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "680-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "681-modified", + "UniqueId": "681", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "681-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "682-modified", + "UniqueId": "682", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "682-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "683-modified", + "UniqueId": "683", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "683-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "684-modified", + "UniqueId": "684", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "684-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "685-modified", + "UniqueId": "685", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "685-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "686-modified", + "UniqueId": "686", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "686-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "687-modified", + "UniqueId": "687", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "687-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "688-modified", + "UniqueId": "688", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "688-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "689-modified", + "UniqueId": "689", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "689-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "690-modified", + "UniqueId": "690", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "690-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "691-modified", + "UniqueId": "691", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "691-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "692-modified", + "UniqueId": "692", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "692-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "693-modified", + "UniqueId": "693", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "693-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "694-modified", + "UniqueId": "694", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "694-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "695-modified", + "UniqueId": "695", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "695-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "696-modified", + "UniqueId": "696", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "696-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "697-modified", + "UniqueId": "697", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "697-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "698-modified", + "UniqueId": "698", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "698-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "699-modified", + "UniqueId": "699", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "699-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "700-modified", + "UniqueId": "700", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "700-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "701-modified", + "UniqueId": "701", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "701-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "702-modified", + "UniqueId": "702", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "702-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "703-modified", + "UniqueId": "703", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "703-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "704-modified", + "UniqueId": "704", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "704-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "705-modified", + "UniqueId": "705", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "705-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "706-modified", + "UniqueId": "706", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "706-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "707-modified", + "UniqueId": "707", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "707-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "708-modified", + "UniqueId": "708", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "708-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "709-modified", + "UniqueId": "709", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "709-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "710-modified", + "UniqueId": "710", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "710-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "711-modified", + "UniqueId": "711", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "711-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "712-modified", + "UniqueId": "712", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "712-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "713-modified", + "UniqueId": "713", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "713-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "714-modified", + "UniqueId": "714", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "714-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "715-modified", + "UniqueId": "715", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "715-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "716-modified", + "UniqueId": "716", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "716-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "717-modified", + "UniqueId": "717", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "717-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "718-modified", + "UniqueId": "718", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "718-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "719-modified", + "UniqueId": "719", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "719-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "720-modified", + "UniqueId": "720", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "720-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "721-modified", + "UniqueId": "721", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "721-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "722-modified", + "UniqueId": "722", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "722-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "723-modified", + "UniqueId": "723", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "723-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "724-modified", + "UniqueId": "724", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "724-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "725-modified", + "UniqueId": "725", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "725-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "726-modified", + "UniqueId": "726", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "726-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "727-modified", + "UniqueId": "727", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "727-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "728-modified", + "UniqueId": "728", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "728-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "729-modified", + "UniqueId": "729", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "729-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "730-modified", + "UniqueId": "730", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "730-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "731-modified", + "UniqueId": "731", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "731-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "732-modified", + "UniqueId": "732", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "732-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "733-modified", + "UniqueId": "733", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "733-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "734-modified", + "UniqueId": "734", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "734-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "735-modified", + "UniqueId": "735", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "735-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "736-modified", + "UniqueId": "736", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "736-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "737-modified", + "UniqueId": "737", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "737-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "738-modified", + "UniqueId": "738", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "738-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "739-modified", + "UniqueId": "739", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "739-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "740-modified", + "UniqueId": "740", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "740-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "741-modified", + "UniqueId": "741", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "741-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "742-modified", + "UniqueId": "742", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "742-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "743-modified", + "UniqueId": "743", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "743-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "744-modified", + "UniqueId": "744", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "744-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "745-modified", + "UniqueId": "745", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "745-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "746-modified", + "UniqueId": "746", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "746-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "747-modified", + "UniqueId": "747", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "747-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "748-modified", + "UniqueId": "748", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "748-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "749-modified", + "UniqueId": "749", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "749-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "750-modified", + "UniqueId": "750", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "750-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "751-modified", + "UniqueId": "751", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "751-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "752-modified", + "UniqueId": "752", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "752-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "753-modified", + "UniqueId": "753", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "753-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "754-modified", + "UniqueId": "754", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "754-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "755-modified", + "UniqueId": "755", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "755-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "756-modified", + "UniqueId": "756", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "756-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "757-modified", + "UniqueId": "757", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "757-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "758-modified", + "UniqueId": "758", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "758-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "759-modified", + "UniqueId": "759", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "759-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "760-modified", + "UniqueId": "760", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "760-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "761-modified", + "UniqueId": "761", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "761-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "762-modified", + "UniqueId": "762", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "762-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "763-modified", + "UniqueId": "763", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "763-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "764-modified", + "UniqueId": "764", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "764-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "765-modified", + "UniqueId": "765", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "765-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "766-modified", + "UniqueId": "766", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "766-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "767-modified", + "UniqueId": "767", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "767-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "768-modified", + "UniqueId": "768", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "768-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "769-modified", + "UniqueId": "769", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "769-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "770-modified", + "UniqueId": "770", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "770-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "771-modified", + "UniqueId": "771", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "771-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "772-modified", + "UniqueId": "772", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "772-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "773-modified", + "UniqueId": "773", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "773-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "774-modified", + "UniqueId": "774", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "774-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "775-modified", + "UniqueId": "775", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "775-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "776-modified", + "UniqueId": "776", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "776-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "777-modified", + "UniqueId": "777", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "777-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "778-modified", + "UniqueId": "778", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "778-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "779-modified", + "UniqueId": "779", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "779-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "780-modified", + "UniqueId": "780", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "780-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "781-modified", + "UniqueId": "781", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "781-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "782-modified", + "UniqueId": "782", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "782-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "783-modified", + "UniqueId": "783", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "783-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "784-modified", + "UniqueId": "784", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "784-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "785-modified", + "UniqueId": "785", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "785-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "786-modified", + "UniqueId": "786", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "786-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "787-modified", + "UniqueId": "787", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "787-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "788-modified", + "UniqueId": "788", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "788-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "789-modified", + "UniqueId": "789", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "789-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "790-modified", + "UniqueId": "790", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "790-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "791-modified", + "UniqueId": "791", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "791-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "792-modified", + "UniqueId": "792", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "792-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "793-modified", + "UniqueId": "793", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "793-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "794-modified", + "UniqueId": "794", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "794-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "795-modified", + "UniqueId": "795", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "795-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "796-modified", + "UniqueId": "796", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "796-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "797-modified", + "UniqueId": "797", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "797-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "798-modified", + "UniqueId": "798", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "798-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "799-modified", + "UniqueId": "799", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "799-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "800-modified", + "UniqueId": "800", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "800-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "801-modified", + "UniqueId": "801", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "801-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "802-modified", + "UniqueId": "802", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "802-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "803-modified", + "UniqueId": "803", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "803-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "804-modified", + "UniqueId": "804", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "804-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "805-modified", + "UniqueId": "805", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "805-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "806-modified", + "UniqueId": "806", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "806-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "807-modified", + "UniqueId": "807", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "807-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "808-modified", + "UniqueId": "808", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "808-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "809-modified", + "UniqueId": "809", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "809-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "810-modified", + "UniqueId": "810", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "810-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "811-modified", + "UniqueId": "811", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "811-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "812-modified", + "UniqueId": "812", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "812-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "813-modified", + "UniqueId": "813", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "813-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "814-modified", + "UniqueId": "814", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "814-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "815-modified", + "UniqueId": "815", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "815-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "816-modified", + "UniqueId": "816", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "816-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "817-modified", + "UniqueId": "817", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "817-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "818-modified", + "UniqueId": "818", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "818-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "819-modified", + "UniqueId": "819", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "819-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "820-modified", + "UniqueId": "820", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "820-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "821-modified", + "UniqueId": "821", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "821-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "822-modified", + "UniqueId": "822", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "822-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "823-modified", + "UniqueId": "823", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "823-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "824-modified", + "UniqueId": "824", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "824-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "825-modified", + "UniqueId": "825", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "825-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "826-modified", + "UniqueId": "826", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "826-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "827-modified", + "UniqueId": "827", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "827-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "828-modified", + "UniqueId": "828", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "828-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "829-modified", + "UniqueId": "829", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "829-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "830-modified", + "UniqueId": "830", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "830-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "831-modified", + "UniqueId": "831", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "831-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "832-modified", + "UniqueId": "832", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "832-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "833-modified", + "UniqueId": "833", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "833-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "834-modified", + "UniqueId": "834", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "834-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "835-modified", + "UniqueId": "835", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "835-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "836-modified", + "UniqueId": "836", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "836-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "837-modified", + "UniqueId": "837", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "837-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "838-modified", + "UniqueId": "838", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "838-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "839-modified", + "UniqueId": "839", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "839-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "840-modified", + "UniqueId": "840", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "840-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "841-modified", + "UniqueId": "841", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "841-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "842-modified", + "UniqueId": "842", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "842-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "843-modified", + "UniqueId": "843", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "843-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "844-modified", + "UniqueId": "844", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "844-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "845-modified", + "UniqueId": "845", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "845-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "846-modified", + "UniqueId": "846", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "846-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "847-modified", + "UniqueId": "847", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "847-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "848-modified", + "UniqueId": "848", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "848-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "849-modified", + "UniqueId": "849", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "849-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "850-modified", + "UniqueId": "850", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "850-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "851-modified", + "UniqueId": "851", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "851-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "852-modified", + "UniqueId": "852", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "852-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "853-modified", + "UniqueId": "853", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "853-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "854-modified", + "UniqueId": "854", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "854-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "855-modified", + "UniqueId": "855", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "855-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "856-modified", + "UniqueId": "856", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "856-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "857-modified", + "UniqueId": "857", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "857-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "858-modified", + "UniqueId": "858", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "858-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "859-modified", + "UniqueId": "859", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "859-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "860-modified", + "UniqueId": "860", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "860-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "861-modified", + "UniqueId": "861", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "861-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "862-modified", + "UniqueId": "862", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "862-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "863-modified", + "UniqueId": "863", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "863-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "864-modified", + "UniqueId": "864", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "864-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "865-modified", + "UniqueId": "865", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "865-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "866-modified", + "UniqueId": "866", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "866-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "867-modified", + "UniqueId": "867", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "867-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "868-modified", + "UniqueId": "868", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "868-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "869-modified", + "UniqueId": "869", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "869-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "870-modified", + "UniqueId": "870", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "870-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "871-modified", + "UniqueId": "871", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "871-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "872-modified", + "UniqueId": "872", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "872-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "873-modified", + "UniqueId": "873", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "873-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "874-modified", + "UniqueId": "874", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "874-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "875-modified", + "UniqueId": "875", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "875-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "876-modified", + "UniqueId": "876", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "876-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "877-modified", + "UniqueId": "877", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "877-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "878-modified", + "UniqueId": "878", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "878-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "879-modified", + "UniqueId": "879", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "879-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "880-modified", + "UniqueId": "880", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "880-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "881-modified", + "UniqueId": "881", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "881-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "882-modified", + "UniqueId": "882", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "882-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "883-modified", + "UniqueId": "883", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "883-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "884-modified", + "UniqueId": "884", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "884-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "885-modified", + "UniqueId": "885", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "885-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "886-modified", + "UniqueId": "886", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "886-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "887-modified", + "UniqueId": "887", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "887-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "888-modified", + "UniqueId": "888", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "888-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "889-modified", + "UniqueId": "889", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "889-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "890-modified", + "UniqueId": "890", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "890-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "891-modified", + "UniqueId": "891", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "891-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "892-modified", + "UniqueId": "892", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "892-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "893-modified", + "UniqueId": "893", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "893-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "894-modified", + "UniqueId": "894", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "894-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "895-modified", + "UniqueId": "895", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "895-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "896-modified", + "UniqueId": "896", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "896-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "897-modified", + "UniqueId": "897", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "897-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "898-modified", + "UniqueId": "898", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "898-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "899-modified", + "UniqueId": "899", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "899-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "900-modified", + "UniqueId": "900", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "900-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "901-modified", + "UniqueId": "901", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "901-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "902-modified", + "UniqueId": "902", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "902-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "903-modified", + "UniqueId": "903", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "903-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "904-modified", + "UniqueId": "904", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "904-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "905-modified", + "UniqueId": "905", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "905-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "906-modified", + "UniqueId": "906", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "906-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "907-modified", + "UniqueId": "907", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "907-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "908-modified", + "UniqueId": "908", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "908-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "909-modified", + "UniqueId": "909", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "909-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "910-modified", + "UniqueId": "910", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "910-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "911-modified", + "UniqueId": "911", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "911-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "912-modified", + "UniqueId": "912", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "912-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "913-modified", + "UniqueId": "913", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "913-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "914-modified", + "UniqueId": "914", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "914-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "915-modified", + "UniqueId": "915", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "915-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "916-modified", + "UniqueId": "916", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "916-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "917-modified", + "UniqueId": "917", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "917-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "918-modified", + "UniqueId": "918", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "918-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "919-modified", + "UniqueId": "919", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "919-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "920-modified", + "UniqueId": "920", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "920-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "921-modified", + "UniqueId": "921", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "921-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "922-modified", + "UniqueId": "922", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "922-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "923-modified", + "UniqueId": "923", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "923-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "924-modified", + "UniqueId": "924", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "924-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "925-modified", + "UniqueId": "925", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "925-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "926-modified", + "UniqueId": "926", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "926-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "927-modified", + "UniqueId": "927", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "927-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "928-modified", + "UniqueId": "928", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "928-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "929-modified", + "UniqueId": "929", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "929-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "930-modified", + "UniqueId": "930", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "930-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "931-modified", + "UniqueId": "931", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "931-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "932-modified", + "UniqueId": "932", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "932-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "933-modified", + "UniqueId": "933", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "933-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "934-modified", + "UniqueId": "934", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "934-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "935-modified", + "UniqueId": "935", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "935-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "936-modified", + "UniqueId": "936", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "936-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "937-modified", + "UniqueId": "937", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "937-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "938-modified", + "UniqueId": "938", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "938-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "939-modified", + "UniqueId": "939", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "939-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "940-modified", + "UniqueId": "940", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "940-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "941-modified", + "UniqueId": "941", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "941-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "942-modified", + "UniqueId": "942", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "942-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "943-modified", + "UniqueId": "943", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "943-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "944-modified", + "UniqueId": "944", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "944-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "945-modified", + "UniqueId": "945", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "945-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "946-modified", + "UniqueId": "946", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "946-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "947-modified", + "UniqueId": "947", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "947-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "948-modified", + "UniqueId": "948", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "948-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "949-modified", + "UniqueId": "949", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "949-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "950-modified", + "UniqueId": "950", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "950-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "951-modified", + "UniqueId": "951", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "951-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "952-modified", + "UniqueId": "952", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "952-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "953-modified", + "UniqueId": "953", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "953-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "954-modified", + "UniqueId": "954", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "954-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "955-modified", + "UniqueId": "955", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "955-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "956-modified", + "UniqueId": "956", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "956-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "957-modified", + "UniqueId": "957", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "957-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "958-modified", + "UniqueId": "958", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "958-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "959-modified", + "UniqueId": "959", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "959-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "960-modified", + "UniqueId": "960", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "960-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "961-modified", + "UniqueId": "961", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "961-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "962-modified", + "UniqueId": "962", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "962-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "963-modified", + "UniqueId": "963", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "963-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "964-modified", + "UniqueId": "964", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "964-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "965-modified", + "UniqueId": "965", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "965-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "966-modified", + "UniqueId": "966", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "966-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "967-modified", + "UniqueId": "967", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "967-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "968-modified", + "UniqueId": "968", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "968-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "969-modified", + "UniqueId": "969", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "969-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "970-modified", + "UniqueId": "970", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "970-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "971-modified", + "UniqueId": "971", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "971-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "972-modified", + "UniqueId": "972", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "972-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "973-modified", + "UniqueId": "973", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "973-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "974-modified", + "UniqueId": "974", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "974-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "975-modified", + "UniqueId": "975", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "975-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "976-modified", + "UniqueId": "976", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "976-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "977-modified", + "UniqueId": "977", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "977-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "978-modified", + "UniqueId": "978", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "978-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "979-modified", + "UniqueId": "979", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "979-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "980-modified", + "UniqueId": "980", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "980-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "981-modified", + "UniqueId": "981", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "981-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "982-modified", + "UniqueId": "982", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "982-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "983-modified", + "UniqueId": "983", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "983-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "984-modified", + "UniqueId": "984", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "984-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "985-modified", + "UniqueId": "985", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "985-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "986-modified", + "UniqueId": "986", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "986-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "987-modified", + "UniqueId": "987", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "987-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "988-modified", + "UniqueId": "988", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "988-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "989-modified", + "UniqueId": "989", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "989-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "990-modified", + "UniqueId": "990", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "990-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "991-modified", + "UniqueId": "991", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "991-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "992-modified", + "UniqueId": "992", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "992-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "993-modified", + "UniqueId": "993", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "993-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "994-modified", + "UniqueId": "994", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "994-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "995-modified", + "UniqueId": "995", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "995-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "996-modified", + "UniqueId": "996", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "996-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "997-modified", + "UniqueId": "997", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "997-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "998-modified", + "UniqueId": "998", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "998-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "999-modified", + "UniqueId": "999", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "999-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1000-modified", + "UniqueId": "1000", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1000-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1001-modified", + "UniqueId": "1001", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1001-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1002-modified", + "UniqueId": "1002", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1002-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1003-modified", + "UniqueId": "1003", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1003-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1004-modified", + "UniqueId": "1004", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1004-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1005-modified", + "UniqueId": "1005", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1005-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1006-modified", + "UniqueId": "1006", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1006-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1007-modified", + "UniqueId": "1007", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1007-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1008-modified", + "UniqueId": "1008", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1008-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1009-modified", + "UniqueId": "1009", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1009-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1010-modified", + "UniqueId": "1010", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1010-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1011-modified", + "UniqueId": "1011", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1011-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1012-modified", + "UniqueId": "1012", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1012-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1013-modified", + "UniqueId": "1013", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1013-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1014-modified", + "UniqueId": "1014", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1014-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1015-modified", + "UniqueId": "1015", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1015-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1016-modified", + "UniqueId": "1016", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1016-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1017-modified", + "UniqueId": "1017", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1017-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1018-modified", + "UniqueId": "1018", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1018-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1019-modified", + "UniqueId": "1019", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1019-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1020-modified", + "UniqueId": "1020", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1020-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1021-modified", + "UniqueId": "1021", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1021-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1022-modified", + "UniqueId": "1022", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1022-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1023-modified", + "UniqueId": "1023", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1023-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1024-modified", + "UniqueId": "1024", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1024-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1025-modified", + "UniqueId": "1025", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1025-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1026-modified", + "UniqueId": "1026", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1026-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1027-modified", + "UniqueId": "1027", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1027-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1028-modified", + "UniqueId": "1028", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1028-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1029-modified", + "UniqueId": "1029", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1029-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1030-modified", + "UniqueId": "1030", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1030-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1031-modified", + "UniqueId": "1031", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1031-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1032-modified", + "UniqueId": "1032", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1032-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1033-modified", + "UniqueId": "1033", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1033-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1034-modified", + "UniqueId": "1034", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1034-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1035-modified", + "UniqueId": "1035", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1035-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1036-modified", + "UniqueId": "1036", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1036-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1037-modified", + "UniqueId": "1037", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1037-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1038-modified", + "UniqueId": "1038", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1038-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1039-modified", + "UniqueId": "1039", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1039-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1040-modified", + "UniqueId": "1040", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1040-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1041-modified", + "UniqueId": "1041", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1041-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1042-modified", + "UniqueId": "1042", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1042-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1043-modified", + "UniqueId": "1043", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1043-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1044-modified", + "UniqueId": "1044", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1044-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1045-modified", + "UniqueId": "1045", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1045-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1046-modified", + "UniqueId": "1046", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1046-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1047-modified", + "UniqueId": "1047", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1047-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1048-modified", + "UniqueId": "1048", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1048-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1049-modified", + "UniqueId": "1049", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1049-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1050-modified", + "UniqueId": "1050", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1050-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1051-modified", + "UniqueId": "1051", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1051-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1052-modified", + "UniqueId": "1052", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1052-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1053-modified", + "UniqueId": "1053", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1053-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1054-modified", + "UniqueId": "1054", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1054-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1055-modified", + "UniqueId": "1055", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1055-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1056-modified", + "UniqueId": "1056", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1056-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1057-modified", + "UniqueId": "1057", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1057-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1058-modified", + "UniqueId": "1058", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1058-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1059-modified", + "UniqueId": "1059", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1059-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1060-modified", + "UniqueId": "1060", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1060-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1061-modified", + "UniqueId": "1061", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1061-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1062-modified", + "UniqueId": "1062", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1062-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1063-modified", + "UniqueId": "1063", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1063-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1064-modified", + "UniqueId": "1064", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1064-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1065-modified", + "UniqueId": "1065", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1065-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1066-modified", + "UniqueId": "1066", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1066-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1067-modified", + "UniqueId": "1067", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1067-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1068-modified", + "UniqueId": "1068", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1068-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1069-modified", + "UniqueId": "1069", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1069-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1070-modified", + "UniqueId": "1070", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1070-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1071-modified", + "UniqueId": "1071", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1071-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1072-modified", + "UniqueId": "1072", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1072-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1073-modified", + "UniqueId": "1073", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1073-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1074-modified", + "UniqueId": "1074", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1074-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1075-modified", + "UniqueId": "1075", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1075-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1076-modified", + "UniqueId": "1076", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1076-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1077-modified", + "UniqueId": "1077", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1077-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1078-modified", + "UniqueId": "1078", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1078-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1079-modified", + "UniqueId": "1079", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1079-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1080-modified", + "UniqueId": "1080", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1080-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1081-modified", + "UniqueId": "1081", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1081-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1082-modified", + "UniqueId": "1082", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1082-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1083-modified", + "UniqueId": "1083", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1083-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1084-modified", + "UniqueId": "1084", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1084-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1085-modified", + "UniqueId": "1085", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1085-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1086-modified", + "UniqueId": "1086", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1086-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1087-modified", + "UniqueId": "1087", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1087-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1088-modified", + "UniqueId": "1088", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1088-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1089-modified", + "UniqueId": "1089", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1089-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1090-modified", + "UniqueId": "1090", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1090-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1091-modified", + "UniqueId": "1091", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1091-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1092-modified", + "UniqueId": "1092", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1092-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1093-modified", + "UniqueId": "1093", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1093-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1094-modified", + "UniqueId": "1094", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1094-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1095-modified", + "UniqueId": "1095", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1095-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1096-modified", + "UniqueId": "1096", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1096-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1097-modified", + "UniqueId": "1097", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1097-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1098-modified", + "UniqueId": "1098", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1098-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1099-modified", + "UniqueId": "1099", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1099-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1100-modified", + "UniqueId": "1100", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1100-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1101-modified", + "UniqueId": "1101", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1101-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1102-modified", + "UniqueId": "1102", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1102-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1103-modified", + "UniqueId": "1103", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1103-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1104-modified", + "UniqueId": "1104", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1104-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1105-modified", + "UniqueId": "1105", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1105-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1106-modified", + "UniqueId": "1106", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1106-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1107-modified", + "UniqueId": "1107", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1107-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1108-modified", + "UniqueId": "1108", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1108-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1109-modified", + "UniqueId": "1109", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1109-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1110-modified", + "UniqueId": "1110", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1110-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1111-modified", + "UniqueId": "1111", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1111-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1112-modified", + "UniqueId": "1112", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1112-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1113-modified", + "UniqueId": "1113", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1113-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1114-modified", + "UniqueId": "1114", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1114-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1115-modified", + "UniqueId": "1115", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1115-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1116-modified", + "UniqueId": "1116", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1116-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1117-modified", + "UniqueId": "1117", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1117-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1118-modified", + "UniqueId": "1118", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1118-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1119-modified", + "UniqueId": "1119", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1119-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1120-modified", + "UniqueId": "1120", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1120-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1121-modified", + "UniqueId": "1121", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1121-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1122-modified", + "UniqueId": "1122", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1122-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1123-modified", + "UniqueId": "1123", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1123-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1124-modified", + "UniqueId": "1124", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1124-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1125-modified", + "UniqueId": "1125", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1125-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1126-modified", + "UniqueId": "1126", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1126-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1127-modified", + "UniqueId": "1127", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1127-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1128-modified", + "UniqueId": "1128", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1128-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1129-modified", + "UniqueId": "1129", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1129-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1130-modified", + "UniqueId": "1130", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1130-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1131-modified", + "UniqueId": "1131", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1131-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1132-modified", + "UniqueId": "1132", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1132-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1133-modified", + "UniqueId": "1133", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1133-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1134-modified", + "UniqueId": "1134", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1134-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1135-modified", + "UniqueId": "1135", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1135-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1136-modified", + "UniqueId": "1136", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1136-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1137-modified", + "UniqueId": "1137", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1137-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1138-modified", + "UniqueId": "1138", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1138-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1139-modified", + "UniqueId": "1139", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1139-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1140-modified", + "UniqueId": "1140", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1140-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1141-modified", + "UniqueId": "1141", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1141-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1142-modified", + "UniqueId": "1142", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1142-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1143-modified", + "UniqueId": "1143", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1143-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1144-modified", + "UniqueId": "1144", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1144-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1145-modified", + "UniqueId": "1145", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1145-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1146-modified", + "UniqueId": "1146", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1146-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1147-modified", + "UniqueId": "1147", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1147-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1148-modified", + "UniqueId": "1148", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1148-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1149-modified", + "UniqueId": "1149", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1149-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1150-modified", + "UniqueId": "1150", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1150-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1151-modified", + "UniqueId": "1151", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1151-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1152-modified", + "UniqueId": "1152", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1152-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1153-modified", + "UniqueId": "1153", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1153-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1154-modified", + "UniqueId": "1154", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1154-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1155-modified", + "UniqueId": "1155", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1155-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1156-modified", + "UniqueId": "1156", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1156-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1157-modified", + "UniqueId": "1157", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1157-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1158-modified", + "UniqueId": "1158", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1158-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1159-modified", + "UniqueId": "1159", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1159-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1160-modified", + "UniqueId": "1160", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1160-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1161-modified", + "UniqueId": "1161", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1161-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1162-modified", + "UniqueId": "1162", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1162-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1163-modified", + "UniqueId": "1163", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1163-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1164-modified", + "UniqueId": "1164", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1164-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1165-modified", + "UniqueId": "1165", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1165-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1166-modified", + "UniqueId": "1166", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1166-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1167-modified", + "UniqueId": "1167", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1167-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1168-modified", + "UniqueId": "1168", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1168-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1169-modified", + "UniqueId": "1169", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1169-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1170-modified", + "UniqueId": "1170", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1170-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1171-modified", + "UniqueId": "1171", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1171-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1172-modified", + "UniqueId": "1172", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1172-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1173-modified", + "UniqueId": "1173", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1173-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1174-modified", + "UniqueId": "1174", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1174-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1175-modified", + "UniqueId": "1175", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1175-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1176-modified", + "UniqueId": "1176", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1176-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1177-modified", + "UniqueId": "1177", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1177-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1178-modified", + "UniqueId": "1178", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1178-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1179-modified", + "UniqueId": "1179", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1179-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1180-modified", + "UniqueId": "1180", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1180-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1181-modified", + "UniqueId": "1181", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1181-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1182-modified", + "UniqueId": "1182", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1182-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1183-modified", + "UniqueId": "1183", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1183-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1184-modified", + "UniqueId": "1184", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1184-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1185-modified", + "UniqueId": "1185", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1185-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1186-modified", + "UniqueId": "1186", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1186-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1187-modified", + "UniqueId": "1187", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1187-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1188-modified", + "UniqueId": "1188", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1188-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1189-modified", + "UniqueId": "1189", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1189-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1190-modified", + "UniqueId": "1190", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1190-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1191-modified", + "UniqueId": "1191", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1191-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1192-modified", + "UniqueId": "1192", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1192-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1193-modified", + "UniqueId": "1193", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1193-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1194-modified", + "UniqueId": "1194", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1194-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1195-modified", + "UniqueId": "1195", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1195-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1196-modified", + "UniqueId": "1196", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1196-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1197-modified", + "UniqueId": "1197", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1197-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1198-modified", + "UniqueId": "1198", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1198-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1199-modified", + "UniqueId": "1199", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1199-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1200-modified", + "UniqueId": "1200", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1200-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1201-modified", + "UniqueId": "1201", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1201-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1202-modified", + "UniqueId": "1202", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1202-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1203-modified", + "UniqueId": "1203", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1203-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1204-modified", + "UniqueId": "1204", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1204-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1205-modified", + "UniqueId": "1205", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1205-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1206-modified", + "UniqueId": "1206", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1206-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1207-modified", + "UniqueId": "1207", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1207-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1208-modified", + "UniqueId": "1208", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1208-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1209-modified", + "UniqueId": "1209", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1209-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1210-modified", + "UniqueId": "1210", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1210-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1211-modified", + "UniqueId": "1211", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1211-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1212-modified", + "UniqueId": "1212", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1212-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1213-modified", + "UniqueId": "1213", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1213-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1214-modified", + "UniqueId": "1214", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1214-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1215-modified", + "UniqueId": "1215", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1215-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1216-modified", + "UniqueId": "1216", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1216-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1217-modified", + "UniqueId": "1217", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1217-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1218-modified", + "UniqueId": "1218", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1218-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1219-modified", + "UniqueId": "1219", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1219-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1220-modified", + "UniqueId": "1220", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1220-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1221-modified", + "UniqueId": "1221", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1221-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1222-modified", + "UniqueId": "1222", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1222-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1223-modified", + "UniqueId": "1223", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1223-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1224-modified", + "UniqueId": "1224", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1224-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1225-modified", + "UniqueId": "1225", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1225-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1226-modified", + "UniqueId": "1226", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1226-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1227-modified", + "UniqueId": "1227", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1227-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1228-modified", + "UniqueId": "1228", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1228-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1229-modified", + "UniqueId": "1229", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1229-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1230-modified", + "UniqueId": "1230", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1230-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1231-modified", + "UniqueId": "1231", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1231-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1232-modified", + "UniqueId": "1232", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1232-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1233-modified", + "UniqueId": "1233", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1233-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1234-modified", + "UniqueId": "1234", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1234-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1235-modified", + "UniqueId": "1235", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1235-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1236-modified", + "UniqueId": "1236", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1236-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1237-modified", + "UniqueId": "1237", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1237-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1238-modified", + "UniqueId": "1238", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1238-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1239-modified", + "UniqueId": "1239", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1239-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1240-modified", + "UniqueId": "1240", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1240-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1241-modified", + "UniqueId": "1241", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1241-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1242-modified", + "UniqueId": "1242", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1242-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1243-modified", + "UniqueId": "1243", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1243-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1244-modified", + "UniqueId": "1244", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1244-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1245-modified", + "UniqueId": "1245", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1245-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1246-modified", + "UniqueId": "1246", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1246-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1247-modified", + "UniqueId": "1247", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1247-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1248-modified", + "UniqueId": "1248", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1248-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1249-modified", + "UniqueId": "1249", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1249-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1250-modified", + "UniqueId": "1250", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1250-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1251-modified", + "UniqueId": "1251", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1251-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1252-modified", + "UniqueId": "1252", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1252-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1253-modified", + "UniqueId": "1253", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1253-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1254-modified", + "UniqueId": "1254", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1254-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1255-modified", + "UniqueId": "1255", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1255-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1256-modified", + "UniqueId": "1256", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1256-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1257-modified", + "UniqueId": "1257", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1257-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1258-modified", + "UniqueId": "1258", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1258-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1259-modified", + "UniqueId": "1259", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1259-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1260-modified", + "UniqueId": "1260", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1260-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1261-modified", + "UniqueId": "1261", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1261-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1262-modified", + "UniqueId": "1262", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1262-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1263-modified", + "UniqueId": "1263", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1263-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1264-modified", + "UniqueId": "1264", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1264-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1265-modified", + "UniqueId": "1265", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1265-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1266-modified", + "UniqueId": "1266", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1266-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1267-modified", + "UniqueId": "1267", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1267-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1268-modified", + "UniqueId": "1268", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1268-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1269-modified", + "UniqueId": "1269", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1269-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1270-modified", + "UniqueId": "1270", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1270-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1271-modified", + "UniqueId": "1271", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1271-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1272-modified", + "UniqueId": "1272", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1272-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1273-modified", + "UniqueId": "1273", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1273-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1274-modified", + "UniqueId": "1274", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1274-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1275-modified", + "UniqueId": "1275", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1275-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1276-modified", + "UniqueId": "1276", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1276-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1277-modified", + "UniqueId": "1277", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1277-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1278-modified", + "UniqueId": "1278", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1278-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1279-modified", + "UniqueId": "1279", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1279-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1280-modified", + "UniqueId": "1280", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1280-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1281-modified", + "UniqueId": "1281", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1281-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1282-modified", + "UniqueId": "1282", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1282-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1283-modified", + "UniqueId": "1283", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1283-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1284-modified", + "UniqueId": "1284", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1284-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1285-modified", + "UniqueId": "1285", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1285-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1286-modified", + "UniqueId": "1286", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1286-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1287-modified", + "UniqueId": "1287", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1287-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1288-modified", + "UniqueId": "1288", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1288-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1289-modified", + "UniqueId": "1289", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1289-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1290-modified", + "UniqueId": "1290", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1290-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1291-modified", + "UniqueId": "1291", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1291-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1292-modified", + "UniqueId": "1292", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1292-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1293-modified", + "UniqueId": "1293", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1293-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1294-modified", + "UniqueId": "1294", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1294-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1295-modified", + "UniqueId": "1295", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1295-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1296-modified", + "UniqueId": "1296", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1296-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1297-modified", + "UniqueId": "1297", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1297-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1298-modified", + "UniqueId": "1298", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1298-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1299-modified", + "UniqueId": "1299", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1299-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1300-modified", + "UniqueId": "1300", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1300-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1301-modified", + "UniqueId": "1301", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1301-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1302-modified", + "UniqueId": "1302", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1302-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1303-modified", + "UniqueId": "1303", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1303-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1304-modified", + "UniqueId": "1304", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1304-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1305-modified", + "UniqueId": "1305", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1305-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1306-modified", + "UniqueId": "1306", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1306-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1307-modified", + "UniqueId": "1307", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1307-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1308-modified", + "UniqueId": "1308", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1308-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1309-modified", + "UniqueId": "1309", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1309-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1310-modified", + "UniqueId": "1310", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1310-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1311-modified", + "UniqueId": "1311", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1311-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1312-modified", + "UniqueId": "1312", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1312-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1313-modified", + "UniqueId": "1313", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1313-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1314-modified", + "UniqueId": "1314", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1314-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1315-modified", + "UniqueId": "1315", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1315-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1316-modified", + "UniqueId": "1316", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1316-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1317-modified", + "UniqueId": "1317", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1317-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1318-modified", + "UniqueId": "1318", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1318-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1319-modified", + "UniqueId": "1319", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1319-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1320-modified", + "UniqueId": "1320", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1320-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1321-modified", + "UniqueId": "1321", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1321-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1322-modified", + "UniqueId": "1322", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1322-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1323-modified", + "UniqueId": "1323", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1323-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1324-modified", + "UniqueId": "1324", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1324-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1325-modified", + "UniqueId": "1325", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1325-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1326-modified", + "UniqueId": "1326", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1326-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1327-modified", + "UniqueId": "1327", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1327-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1328-modified", + "UniqueId": "1328", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1328-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1329-modified", + "UniqueId": "1329", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1329-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1330-modified", + "UniqueId": "1330", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1330-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1331-modified", + "UniqueId": "1331", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1331-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1332-modified", + "UniqueId": "1332", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1332-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1333-modified", + "UniqueId": "1333", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1333-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1334-modified", + "UniqueId": "1334", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1334-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1335-modified", + "UniqueId": "1335", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1335-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1336-modified", + "UniqueId": "1336", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1336-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1337-modified", + "UniqueId": "1337", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1337-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1338-modified", + "UniqueId": "1338", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1338-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1339-modified", + "UniqueId": "1339", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1339-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1340-modified", + "UniqueId": "1340", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1340-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1341-modified", + "UniqueId": "1341", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1341-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1342-modified", + "UniqueId": "1342", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1342-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1343-modified", + "UniqueId": "1343", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1343-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1344-modified", + "UniqueId": "1344", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1344-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1345-modified", + "UniqueId": "1345", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1345-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1346-modified", + "UniqueId": "1346", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1346-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1347-modified", + "UniqueId": "1347", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1347-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1348-modified", + "UniqueId": "1348", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1348-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1349-modified", + "UniqueId": "1349", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1349-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1350-modified", + "UniqueId": "1350", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1350-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1351-modified", + "UniqueId": "1351", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1351-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1352-modified", + "UniqueId": "1352", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1352-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1353-modified", + "UniqueId": "1353", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1353-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1354-modified", + "UniqueId": "1354", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1354-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1355-modified", + "UniqueId": "1355", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1355-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1356-modified", + "UniqueId": "1356", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1356-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1357-modified", + "UniqueId": "1357", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1357-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1358-modified", + "UniqueId": "1358", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1358-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1359-modified", + "UniqueId": "1359", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1359-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1360-modified", + "UniqueId": "1360", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1360-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1361-modified", + "UniqueId": "1361", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1361-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1362-modified", + "UniqueId": "1362", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1362-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1363-modified", + "UniqueId": "1363", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1363-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1364-modified", + "UniqueId": "1364", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1364-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1365-modified", + "UniqueId": "1365", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1365-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1366-modified", + "UniqueId": "1366", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1366-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1367-modified", + "UniqueId": "1367", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1367-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1368-modified", + "UniqueId": "1368", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1368-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1369-modified", + "UniqueId": "1369", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1369-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1370-modified", + "UniqueId": "1370", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1370-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1371-modified", + "UniqueId": "1371", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1371-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1372-modified", + "UniqueId": "1372", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1372-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1373-modified", + "UniqueId": "1373", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1373-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1374-modified", + "UniqueId": "1374", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1374-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1375-modified", + "UniqueId": "1375", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1375-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1376-modified", + "UniqueId": "1376", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1376-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1377-modified", + "UniqueId": "1377", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1377-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1378-modified", + "UniqueId": "1378", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1378-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1379-modified", + "UniqueId": "1379", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1379-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1380-modified", + "UniqueId": "1380", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1380-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1381-modified", + "UniqueId": "1381", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1381-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1382-modified", + "UniqueId": "1382", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1382-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1383-modified", + "UniqueId": "1383", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1383-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1384-modified", + "UniqueId": "1384", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1384-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1385-modified", + "UniqueId": "1385", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1385-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1386-modified", + "UniqueId": "1386", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1386-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1387-modified", + "UniqueId": "1387", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1387-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1388-modified", + "UniqueId": "1388", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1388-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1389-modified", + "UniqueId": "1389", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1389-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1390-modified", + "UniqueId": "1390", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1390-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1391-modified", + "UniqueId": "1391", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1391-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1392-modified", + "UniqueId": "1392", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1392-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1393-modified", + "UniqueId": "1393", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1393-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1394-modified", + "UniqueId": "1394", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1394-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1395-modified", + "UniqueId": "1395", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1395-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1396-modified", + "UniqueId": "1396", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1396-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1397-modified", + "UniqueId": "1397", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1397-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1398-modified", + "UniqueId": "1398", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1398-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1399-modified", + "UniqueId": "1399", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1399-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1400-modified", + "UniqueId": "1400", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1400-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1401-modified", + "UniqueId": "1401", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1401-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1402-modified", + "UniqueId": "1402", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1402-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1403-modified", + "UniqueId": "1403", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1403-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1404-modified", + "UniqueId": "1404", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1404-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1405-modified", + "UniqueId": "1405", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1405-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1406-modified", + "UniqueId": "1406", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1406-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1407-modified", + "UniqueId": "1407", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1407-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1408-modified", + "UniqueId": "1408", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1408-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1409-modified", + "UniqueId": "1409", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1409-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1410-modified", + "UniqueId": "1410", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1410-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1411-modified", + "UniqueId": "1411", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1411-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1412-modified", + "UniqueId": "1412", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1412-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1413-modified", + "UniqueId": "1413", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1413-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1414-modified", + "UniqueId": "1414", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1414-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1415-modified", + "UniqueId": "1415", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1415-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1416-modified", + "UniqueId": "1416", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1416-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1417-modified", + "UniqueId": "1417", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1417-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1418-modified", + "UniqueId": "1418", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1418-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1419-modified", + "UniqueId": "1419", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1419-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1420-modified", + "UniqueId": "1420", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1420-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1421-modified", + "UniqueId": "1421", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1421-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1422-modified", + "UniqueId": "1422", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1422-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1423-modified", + "UniqueId": "1423", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1423-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1424-modified", + "UniqueId": "1424", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1424-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1425-modified", + "UniqueId": "1425", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1425-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1426-modified", + "UniqueId": "1426", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1426-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1427-modified", + "UniqueId": "1427", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1427-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1428-modified", + "UniqueId": "1428", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1428-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1429-modified", + "UniqueId": "1429", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1429-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1430-modified", + "UniqueId": "1430", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1430-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1431-modified", + "UniqueId": "1431", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1431-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1432-modified", + "UniqueId": "1432", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1432-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1433-modified", + "UniqueId": "1433", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1433-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1434-modified", + "UniqueId": "1434", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1434-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1435-modified", + "UniqueId": "1435", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1435-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1436-modified", + "UniqueId": "1436", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1436-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1437-modified", + "UniqueId": "1437", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1437-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1438-modified", + "UniqueId": "1438", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1438-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1439-modified", + "UniqueId": "1439", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1439-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1440-modified", + "UniqueId": "1440", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1440-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1441-modified", + "UniqueId": "1441", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1441-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1442-modified", + "UniqueId": "1442", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1442-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1443-modified", + "UniqueId": "1443", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1443-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1444-modified", + "UniqueId": "1444", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1444-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1445-modified", + "UniqueId": "1445", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1445-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1446-modified", + "UniqueId": "1446", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1446-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1447-modified", + "UniqueId": "1447", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1447-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1448-modified", + "UniqueId": "1448", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1448-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1449-modified", + "UniqueId": "1449", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1449-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1450-modified", + "UniqueId": "1450", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1450-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1451-modified", + "UniqueId": "1451", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1451-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1452-modified", + "UniqueId": "1452", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1452-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1453-modified", + "UniqueId": "1453", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1453-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1454-modified", + "UniqueId": "1454", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1454-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1455-modified", + "UniqueId": "1455", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1455-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1456-modified", + "UniqueId": "1456", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1456-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1457-modified", + "UniqueId": "1457", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1457-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1458-modified", + "UniqueId": "1458", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1458-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1459-modified", + "UniqueId": "1459", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1459-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1460-modified", + "UniqueId": "1460", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1460-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1461-modified", + "UniqueId": "1461", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1461-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1462-modified", + "UniqueId": "1462", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1462-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1463-modified", + "UniqueId": "1463", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1463-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1464-modified", + "UniqueId": "1464", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1464-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1465-modified", + "UniqueId": "1465", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1465-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1466-modified", + "UniqueId": "1466", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1466-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1467-modified", + "UniqueId": "1467", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1467-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1468-modified", + "UniqueId": "1468", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1468-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1469-modified", + "UniqueId": "1469", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1469-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1470-modified", + "UniqueId": "1470", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1470-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1471-modified", + "UniqueId": "1471", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1471-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1472-modified", + "UniqueId": "1472", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1472-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1473-modified", + "UniqueId": "1473", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1473-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1474-modified", + "UniqueId": "1474", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1474-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1475-modified", + "UniqueId": "1475", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1475-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1476-modified", + "UniqueId": "1476", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1476-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1477-modified", + "UniqueId": "1477", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1477-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1478-modified", + "UniqueId": "1478", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1478-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1479-modified", + "UniqueId": "1479", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1479-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1480-modified", + "UniqueId": "1480", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1480-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1481-modified", + "UniqueId": "1481", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1481-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1482-modified", + "UniqueId": "1482", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1482-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1483-modified", + "UniqueId": "1483", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1483-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1484-modified", + "UniqueId": "1484", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1484-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1485-modified", + "UniqueId": "1485", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1485-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1486-modified", + "UniqueId": "1486", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1486-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1487-modified", + "UniqueId": "1487", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1487-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1488-modified", + "UniqueId": "1488", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1488-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1489-modified", + "UniqueId": "1489", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1489-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1490-modified", + "UniqueId": "1490", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1490-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1491-modified", + "UniqueId": "1491", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1491-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1492-modified", + "UniqueId": "1492", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1492-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1493-modified", + "UniqueId": "1493", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1493-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1494-modified", + "UniqueId": "1494", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1494-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1495-modified", + "UniqueId": "1495", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1495-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1496-modified", + "UniqueId": "1496", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1496-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1497-modified", + "UniqueId": "1497", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1497-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1498-modified", + "UniqueId": "1498", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1498-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1499-modified", + "UniqueId": "1499", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1499-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1500-modified", + "UniqueId": "1500", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1500-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1501-modified", + "UniqueId": "1501", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1501-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1502-modified", + "UniqueId": "1502", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1502-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1503-modified", + "UniqueId": "1503", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1503-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1504-modified", + "UniqueId": "1504", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1504-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1505-modified", + "UniqueId": "1505", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1505-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1506-modified", + "UniqueId": "1506", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1506-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1507-modified", + "UniqueId": "1507", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1507-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1508-modified", + "UniqueId": "1508", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1508-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1509-modified", + "UniqueId": "1509", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1509-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1510-modified", + "UniqueId": "1510", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1510-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1511-modified", + "UniqueId": "1511", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1511-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1512-modified", + "UniqueId": "1512", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1512-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1513-modified", + "UniqueId": "1513", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1513-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1514-modified", + "UniqueId": "1514", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1514-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1515-modified", + "UniqueId": "1515", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1515-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1516-modified", + "UniqueId": "1516", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1516-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1517-modified", + "UniqueId": "1517", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1517-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1518-modified", + "UniqueId": "1518", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1518-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1519-modified", + "UniqueId": "1519", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1519-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1520-modified", + "UniqueId": "1520", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1520-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1521-modified", + "UniqueId": "1521", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1521-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1522-modified", + "UniqueId": "1522", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1522-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1523-modified", + "UniqueId": "1523", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1523-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1524-modified", + "UniqueId": "1524", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1524-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1525-modified", + "UniqueId": "1525", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1525-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1526-modified", + "UniqueId": "1526", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1526-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1527-modified", + "UniqueId": "1527", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1527-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1528-modified", + "UniqueId": "1528", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1528-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1529-modified", + "UniqueId": "1529", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1529-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1530-modified", + "UniqueId": "1530", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1530-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1531-modified", + "UniqueId": "1531", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1531-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1532-modified", + "UniqueId": "1532", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1532-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1533-modified", + "UniqueId": "1533", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1533-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1534-modified", + "UniqueId": "1534", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1534-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1535-modified", + "UniqueId": "1535", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1535-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1536-modified", + "UniqueId": "1536", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1536-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1537-modified", + "UniqueId": "1537", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1537-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1538-modified", + "UniqueId": "1538", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1538-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1539-modified", + "UniqueId": "1539", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1539-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1540-modified", + "UniqueId": "1540", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1540-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1541-modified", + "UniqueId": "1541", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1541-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1542-modified", + "UniqueId": "1542", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1542-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1543-modified", + "UniqueId": "1543", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1543-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1544-modified", + "UniqueId": "1544", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1544-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1545-modified", + "UniqueId": "1545", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1545-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1546-modified", + "UniqueId": "1546", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1546-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1547-modified", + "UniqueId": "1547", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1547-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1548-modified", + "UniqueId": "1548", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1548-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1549-modified", + "UniqueId": "1549", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1549-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1550-modified", + "UniqueId": "1550", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1550-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1551-modified", + "UniqueId": "1551", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1551-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1552-modified", + "UniqueId": "1552", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1552-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1553-modified", + "UniqueId": "1553", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1553-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1554-modified", + "UniqueId": "1554", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1554-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1555-modified", + "UniqueId": "1555", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1555-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1556-modified", + "UniqueId": "1556", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1556-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1557-modified", + "UniqueId": "1557", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1557-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1558-modified", + "UniqueId": "1558", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1558-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1559-modified", + "UniqueId": "1559", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1559-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1560-modified", + "UniqueId": "1560", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1560-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1561-modified", + "UniqueId": "1561", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1561-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1562-modified", + "UniqueId": "1562", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1562-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1563-modified", + "UniqueId": "1563", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1563-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1564-modified", + "UniqueId": "1564", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1564-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1565-modified", + "UniqueId": "1565", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1565-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1566-modified", + "UniqueId": "1566", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1566-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1567-modified", + "UniqueId": "1567", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1567-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1568-modified", + "UniqueId": "1568", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1568-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1569-modified", + "UniqueId": "1569", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1569-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1570-modified", + "UniqueId": "1570", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1570-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1571-modified", + "UniqueId": "1571", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1571-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1572-modified", + "UniqueId": "1572", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1572-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1573-modified", + "UniqueId": "1573", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1573-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1574-modified", + "UniqueId": "1574", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1574-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1575-modified", + "UniqueId": "1575", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1575-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1576-modified", + "UniqueId": "1576", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1576-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1577-modified", + "UniqueId": "1577", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1577-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1578-modified", + "UniqueId": "1578", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1578-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1579-modified", + "UniqueId": "1579", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1579-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1580-modified", + "UniqueId": "1580", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1580-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1581-modified", + "UniqueId": "1581", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1581-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1582-modified", + "UniqueId": "1582", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1582-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1583-modified", + "UniqueId": "1583", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1583-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1584-modified", + "UniqueId": "1584", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1584-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1585-modified", + "UniqueId": "1585", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1585-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1586-modified", + "UniqueId": "1586", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1586-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1587-modified", + "UniqueId": "1587", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1587-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1588-modified", + "UniqueId": "1588", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1588-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1589-modified", + "UniqueId": "1589", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1589-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1590-modified", + "UniqueId": "1590", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1590-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1591-modified", + "UniqueId": "1591", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1591-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1592-modified", + "UniqueId": "1592", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1592-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1593-modified", + "UniqueId": "1593", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1593-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1594-modified", + "UniqueId": "1594", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1594-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1595-modified", + "UniqueId": "1595", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1595-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1596-modified", + "UniqueId": "1596", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1596-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1597-modified", + "UniqueId": "1597", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1597-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1598-modified", + "UniqueId": "1598", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1598-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1599-modified", + "UniqueId": "1599", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1599-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1600-modified", + "UniqueId": "1600", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1600-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1601-modified", + "UniqueId": "1601", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1601-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1602-modified", + "UniqueId": "1602", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1602-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1603-modified", + "UniqueId": "1603", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1603-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1604-modified", + "UniqueId": "1604", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1604-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1605-modified", + "UniqueId": "1605", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1605-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1606-modified", + "UniqueId": "1606", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1606-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1607-modified", + "UniqueId": "1607", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1607-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1608-modified", + "UniqueId": "1608", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1608-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1609-modified", + "UniqueId": "1609", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1609-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1610-modified", + "UniqueId": "1610", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1610-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1611-modified", + "UniqueId": "1611", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1611-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1612-modified", + "UniqueId": "1612", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1612-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1613-modified", + "UniqueId": "1613", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1613-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1614-modified", + "UniqueId": "1614", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1614-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1615-modified", + "UniqueId": "1615", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1615-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1616-modified", + "UniqueId": "1616", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1616-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1617-modified", + "UniqueId": "1617", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1617-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1618-modified", + "UniqueId": "1618", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1618-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1619-modified", + "UniqueId": "1619", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1619-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1620-modified", + "UniqueId": "1620", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1620-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1621-modified", + "UniqueId": "1621", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1621-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1622-modified", + "UniqueId": "1622", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1622-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1623-modified", + "UniqueId": "1623", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1623-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1624-modified", + "UniqueId": "1624", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1624-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1625-modified", + "UniqueId": "1625", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1625-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1626-modified", + "UniqueId": "1626", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1626-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1627-modified", + "UniqueId": "1627", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1627-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1628-modified", + "UniqueId": "1628", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1628-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1629-modified", + "UniqueId": "1629", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1629-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1630-modified", + "UniqueId": "1630", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1630-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1631-modified", + "UniqueId": "1631", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1631-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1632-modified", + "UniqueId": "1632", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1632-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1633-modified", + "UniqueId": "1633", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1633-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1634-modified", + "UniqueId": "1634", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1634-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1635-modified", + "UniqueId": "1635", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1635-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1636-modified", + "UniqueId": "1636", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1636-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1637-modified", + "UniqueId": "1637", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1637-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1638-modified", + "UniqueId": "1638", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1638-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1639-modified", + "UniqueId": "1639", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1639-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1640-modified", + "UniqueId": "1640", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1640-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1641-modified", + "UniqueId": "1641", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1641-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1642-modified", + "UniqueId": "1642", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1642-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1643-modified", + "UniqueId": "1643", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1643-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1644-modified", + "UniqueId": "1644", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1644-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1645-modified", + "UniqueId": "1645", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1645-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1646-modified", + "UniqueId": "1646", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1646-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1647-modified", + "UniqueId": "1647", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1647-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1648-modified", + "UniqueId": "1648", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1648-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1649-modified", + "UniqueId": "1649", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1649-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1650-modified", + "UniqueId": "1650", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1650-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1651-modified", + "UniqueId": "1651", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1651-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1652-modified", + "UniqueId": "1652", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1652-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1653-modified", + "UniqueId": "1653", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1653-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1654-modified", + "UniqueId": "1654", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1654-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1655-modified", + "UniqueId": "1655", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1655-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1656-modified", + "UniqueId": "1656", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1656-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1657-modified", + "UniqueId": "1657", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1657-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1658-modified", + "UniqueId": "1658", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1658-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1659-modified", + "UniqueId": "1659", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1659-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1660-modified", + "UniqueId": "1660", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1660-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1661-modified", + "UniqueId": "1661", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1661-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1662-modified", + "UniqueId": "1662", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1662-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1663-modified", + "UniqueId": "1663", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1663-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1664-modified", + "UniqueId": "1664", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1664-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1665-modified", + "UniqueId": "1665", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1665-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1666-modified", + "UniqueId": "1666", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1666-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1667-modified", + "UniqueId": "1667", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1667-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1668-modified", + "UniqueId": "1668", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1668-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1669-modified", + "UniqueId": "1669", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1669-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1670-modified", + "UniqueId": "1670", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1670-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1671-modified", + "UniqueId": "1671", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1671-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1672-modified", + "UniqueId": "1672", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1672-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1673-modified", + "UniqueId": "1673", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1673-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1674-modified", + "UniqueId": "1674", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1674-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1675-modified", + "UniqueId": "1675", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1675-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1676-modified", + "UniqueId": "1676", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1676-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1677-modified", + "UniqueId": "1677", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1677-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1678-modified", + "UniqueId": "1678", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1678-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1679-modified", + "UniqueId": "1679", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1679-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1680-modified", + "UniqueId": "1680", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1680-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1681-modified", + "UniqueId": "1681", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1681-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1682-modified", + "UniqueId": "1682", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1682-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1683-modified", + "UniqueId": "1683", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1683-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1684-modified", + "UniqueId": "1684", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1684-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1685-modified", + "UniqueId": "1685", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1685-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1686-modified", + "UniqueId": "1686", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1686-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1687-modified", + "UniqueId": "1687", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1687-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1688-modified", + "UniqueId": "1688", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1688-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1689-modified", + "UniqueId": "1689", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1689-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1690-modified", + "UniqueId": "1690", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1690-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1691-modified", + "UniqueId": "1691", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1691-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1692-modified", + "UniqueId": "1692", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1692-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1693-modified", + "UniqueId": "1693", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1693-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1694-modified", + "UniqueId": "1694", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1694-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1695-modified", + "UniqueId": "1695", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1695-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1696-modified", + "UniqueId": "1696", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1696-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1697-modified", + "UniqueId": "1697", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1697-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1698-modified", + "UniqueId": "1698", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1698-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1699-modified", + "UniqueId": "1699", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1699-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1700-modified", + "UniqueId": "1700", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1700-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1701-modified", + "UniqueId": "1701", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1701-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1702-modified", + "UniqueId": "1702", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1702-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1703-modified", + "UniqueId": "1703", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1703-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1704-modified", + "UniqueId": "1704", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1704-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1705-modified", + "UniqueId": "1705", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1705-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1706-modified", + "UniqueId": "1706", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1706-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1707-modified", + "UniqueId": "1707", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1707-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1708-modified", + "UniqueId": "1708", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1708-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1709-modified", + "UniqueId": "1709", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1709-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1710-modified", + "UniqueId": "1710", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1710-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1711-modified", + "UniqueId": "1711", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1711-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1712-modified", + "UniqueId": "1712", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1712-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1713-modified", + "UniqueId": "1713", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1713-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1714-modified", + "UniqueId": "1714", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1714-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1715-modified", + "UniqueId": "1715", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1715-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1716-modified", + "UniqueId": "1716", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1716-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1717-modified", + "UniqueId": "1717", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1717-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1718-modified", + "UniqueId": "1718", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1718-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1719-modified", + "UniqueId": "1719", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1719-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1720-modified", + "UniqueId": "1720", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1720-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1721-modified", + "UniqueId": "1721", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1721-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1722-modified", + "UniqueId": "1722", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1722-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1723-modified", + "UniqueId": "1723", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1723-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1724-modified", + "UniqueId": "1724", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1724-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1725-modified", + "UniqueId": "1725", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1725-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1726-modified", + "UniqueId": "1726", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1726-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1727-modified", + "UniqueId": "1727", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1727-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1728-modified", + "UniqueId": "1728", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1728-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1729-modified", + "UniqueId": "1729", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1729-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1730-modified", + "UniqueId": "1730", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1730-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1731-modified", + "UniqueId": "1731", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1731-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1732-modified", + "UniqueId": "1732", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1732-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1733-modified", + "UniqueId": "1733", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1733-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1734-modified", + "UniqueId": "1734", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1734-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1735-modified", + "UniqueId": "1735", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1735-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1736-modified", + "UniqueId": "1736", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1736-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1737-modified", + "UniqueId": "1737", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1737-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1738-modified", + "UniqueId": "1738", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1738-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1739-modified", + "UniqueId": "1739", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1739-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1740-modified", + "UniqueId": "1740", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1740-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1741-modified", + "UniqueId": "1741", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1741-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1742-modified", + "UniqueId": "1742", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1742-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1743-modified", + "UniqueId": "1743", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1743-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1744-modified", + "UniqueId": "1744", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1744-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1745-modified", + "UniqueId": "1745", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1745-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1746-modified", + "UniqueId": "1746", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1746-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1747-modified", + "UniqueId": "1747", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1747-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1748-modified", + "UniqueId": "1748", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1748-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1749-modified", + "UniqueId": "1749", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1749-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1750-modified", + "UniqueId": "1750", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1750-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1751-modified", + "UniqueId": "1751", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1751-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1752-modified", + "UniqueId": "1752", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1752-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1753-modified", + "UniqueId": "1753", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1753-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1754-modified", + "UniqueId": "1754", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1754-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1755-modified", + "UniqueId": "1755", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1755-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1756-modified", + "UniqueId": "1756", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1756-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1757-modified", + "UniqueId": "1757", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1757-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1758-modified", + "UniqueId": "1758", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1758-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1759-modified", + "UniqueId": "1759", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1759-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1760-modified", + "UniqueId": "1760", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1760-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1761-modified", + "UniqueId": "1761", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1761-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1762-modified", + "UniqueId": "1762", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1762-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1763-modified", + "UniqueId": "1763", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1763-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1764-modified", + "UniqueId": "1764", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1764-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1765-modified", + "UniqueId": "1765", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1765-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1766-modified", + "UniqueId": "1766", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1766-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1767-modified", + "UniqueId": "1767", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1767-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1768-modified", + "UniqueId": "1768", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1768-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1769-modified", + "UniqueId": "1769", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1769-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1770-modified", + "UniqueId": "1770", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1770-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1771-modified", + "UniqueId": "1771", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1771-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1772-modified", + "UniqueId": "1772", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1772-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1773-modified", + "UniqueId": "1773", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1773-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1774-modified", + "UniqueId": "1774", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1774-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1775-modified", + "UniqueId": "1775", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1775-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1776-modified", + "UniqueId": "1776", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1776-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1777-modified", + "UniqueId": "1777", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1777-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1778-modified", + "UniqueId": "1778", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1778-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1779-modified", + "UniqueId": "1779", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1779-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1780-modified", + "UniqueId": "1780", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1780-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1781-modified", + "UniqueId": "1781", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1781-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1782-modified", + "UniqueId": "1782", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1782-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1783-modified", + "UniqueId": "1783", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1783-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1784-modified", + "UniqueId": "1784", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1784-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1785-modified", + "UniqueId": "1785", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1785-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1786-modified", + "UniqueId": "1786", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1786-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1787-modified", + "UniqueId": "1787", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1787-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1788-modified", + "UniqueId": "1788", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1788-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1789-modified", + "UniqueId": "1789", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1789-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1790-modified", + "UniqueId": "1790", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1790-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1791-modified", + "UniqueId": "1791", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1791-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1792-modified", + "UniqueId": "1792", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1792-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1793-modified", + "UniqueId": "1793", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1793-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1794-modified", + "UniqueId": "1794", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1794-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1795-modified", + "UniqueId": "1795", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1795-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1796-modified", + "UniqueId": "1796", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1796-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1797-modified", + "UniqueId": "1797", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1797-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1798-modified", + "UniqueId": "1798", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1798-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1799-modified", + "UniqueId": "1799", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1799-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1800-modified", + "UniqueId": "1800", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1800-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1801-modified", + "UniqueId": "1801", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1801-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1802-modified", + "UniqueId": "1802", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1802-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1803-modified", + "UniqueId": "1803", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1803-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1804-modified", + "UniqueId": "1804", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1804-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1805-modified", + "UniqueId": "1805", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1805-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1806-modified", + "UniqueId": "1806", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1806-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1807-modified", + "UniqueId": "1807", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1807-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1808-modified", + "UniqueId": "1808", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1808-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1809-modified", + "UniqueId": "1809", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1809-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1810-modified", + "UniqueId": "1810", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1810-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1811-modified", + "UniqueId": "1811", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1811-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1812-modified", + "UniqueId": "1812", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1812-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1813-modified", + "UniqueId": "1813", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1813-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1814-modified", + "UniqueId": "1814", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1814-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1815-modified", + "UniqueId": "1815", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1815-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1816-modified", + "UniqueId": "1816", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1816-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1817-modified", + "UniqueId": "1817", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1817-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1818-modified", + "UniqueId": "1818", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1818-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1819-modified", + "UniqueId": "1819", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1819-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1820-modified", + "UniqueId": "1820", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1820-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1821-modified", + "UniqueId": "1821", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1821-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1822-modified", + "UniqueId": "1822", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1822-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1823-modified", + "UniqueId": "1823", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1823-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1824-modified", + "UniqueId": "1824", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1824-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1825-modified", + "UniqueId": "1825", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1825-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1826-modified", + "UniqueId": "1826", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1826-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1827-modified", + "UniqueId": "1827", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1827-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1828-modified", + "UniqueId": "1828", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1828-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1829-modified", + "UniqueId": "1829", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1829-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1830-modified", + "UniqueId": "1830", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1830-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1831-modified", + "UniqueId": "1831", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1831-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1832-modified", + "UniqueId": "1832", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1832-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1833-modified", + "UniqueId": "1833", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1833-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1834-modified", + "UniqueId": "1834", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1834-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1835-modified", + "UniqueId": "1835", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1835-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1836-modified", + "UniqueId": "1836", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1836-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1837-modified", + "UniqueId": "1837", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1837-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1838-modified", + "UniqueId": "1838", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1838-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1839-modified", + "UniqueId": "1839", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1839-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1840-modified", + "UniqueId": "1840", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1840-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1841-modified", + "UniqueId": "1841", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1841-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1842-modified", + "UniqueId": "1842", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1842-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1843-modified", + "UniqueId": "1843", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1843-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1844-modified", + "UniqueId": "1844", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1844-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1845-modified", + "UniqueId": "1845", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1845-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1846-modified", + "UniqueId": "1846", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1846-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1847-modified", + "UniqueId": "1847", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1847-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1848-modified", + "UniqueId": "1848", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1848-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1849-modified", + "UniqueId": "1849", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1849-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1850-modified", + "UniqueId": "1850", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1850-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1851-modified", + "UniqueId": "1851", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1851-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1852-modified", + "UniqueId": "1852", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1852-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1853-modified", + "UniqueId": "1853", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1853-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1854-modified", + "UniqueId": "1854", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1854-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1855-modified", + "UniqueId": "1855", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1855-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1856-modified", + "UniqueId": "1856", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1856-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1857-modified", + "UniqueId": "1857", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1857-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1858-modified", + "UniqueId": "1858", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1858-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1859-modified", + "UniqueId": "1859", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1859-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1860-modified", + "UniqueId": "1860", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1860-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1861-modified", + "UniqueId": "1861", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1861-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1862-modified", + "UniqueId": "1862", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1862-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1863-modified", + "UniqueId": "1863", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1863-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1864-modified", + "UniqueId": "1864", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1864-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1865-modified", + "UniqueId": "1865", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1865-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1866-modified", + "UniqueId": "1866", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1866-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1867-modified", + "UniqueId": "1867", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1867-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1868-modified", + "UniqueId": "1868", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1868-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1869-modified", + "UniqueId": "1869", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1869-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1870-modified", + "UniqueId": "1870", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1870-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1871-modified", + "UniqueId": "1871", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1871-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1872-modified", + "UniqueId": "1872", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1872-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1873-modified", + "UniqueId": "1873", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1873-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1874-modified", + "UniqueId": "1874", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1874-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1875-modified", + "UniqueId": "1875", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1875-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1876-modified", + "UniqueId": "1876", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1876-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1877-modified", + "UniqueId": "1877", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1877-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1878-modified", + "UniqueId": "1878", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1878-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1879-modified", + "UniqueId": "1879", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1879-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1880-modified", + "UniqueId": "1880", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1880-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1881-modified", + "UniqueId": "1881", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1881-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1882-modified", + "UniqueId": "1882", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1882-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1883-modified", + "UniqueId": "1883", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1883-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1884-modified", + "UniqueId": "1884", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1884-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1885-modified", + "UniqueId": "1885", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1885-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1886-modified", + "UniqueId": "1886", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1886-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1887-modified", + "UniqueId": "1887", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1887-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1888-modified", + "UniqueId": "1888", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1888-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1889-modified", + "UniqueId": "1889", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1889-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1890-modified", + "UniqueId": "1890", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1890-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1891-modified", + "UniqueId": "1891", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1891-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1892-modified", + "UniqueId": "1892", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1892-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1893-modified", + "UniqueId": "1893", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1893-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1894-modified", + "UniqueId": "1894", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1894-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1895-modified", + "UniqueId": "1895", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1895-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1896-modified", + "UniqueId": "1896", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1896-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1897-modified", + "UniqueId": "1897", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1897-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1898-modified", + "UniqueId": "1898", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1898-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1899-modified", + "UniqueId": "1899", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1899-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1900-modified", + "UniqueId": "1900", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1900-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1901-modified", + "UniqueId": "1901", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1901-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1902-modified", + "UniqueId": "1902", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1902-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1903-modified", + "UniqueId": "1903", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1903-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1904-modified", + "UniqueId": "1904", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1904-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1905-modified", + "UniqueId": "1905", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1905-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1906-modified", + "UniqueId": "1906", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1906-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1907-modified", + "UniqueId": "1907", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1907-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1908-modified", + "UniqueId": "1908", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1908-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1909-modified", + "UniqueId": "1909", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1909-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1910-modified", + "UniqueId": "1910", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1910-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1911-modified", + "UniqueId": "1911", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1911-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1912-modified", + "UniqueId": "1912", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1912-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1913-modified", + "UniqueId": "1913", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1913-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1914-modified", + "UniqueId": "1914", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1914-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1915-modified", + "UniqueId": "1915", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1915-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1916-modified", + "UniqueId": "1916", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1916-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1917-modified", + "UniqueId": "1917", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1917-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1918-modified", + "UniqueId": "1918", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1918-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1919-modified", + "UniqueId": "1919", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1919-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1920-modified", + "UniqueId": "1920", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1920-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1921-modified", + "UniqueId": "1921", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1921-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1922-modified", + "UniqueId": "1922", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1922-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1923-modified", + "UniqueId": "1923", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1923-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1924-modified", + "UniqueId": "1924", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1924-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1925-modified", + "UniqueId": "1925", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1925-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1926-modified", + "UniqueId": "1926", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1926-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1927-modified", + "UniqueId": "1927", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1927-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1928-modified", + "UniqueId": "1928", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1928-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1929-modified", + "UniqueId": "1929", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1929-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1930-modified", + "UniqueId": "1930", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1930-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1931-modified", + "UniqueId": "1931", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1931-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1932-modified", + "UniqueId": "1932", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1932-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1933-modified", + "UniqueId": "1933", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1933-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1934-modified", + "UniqueId": "1934", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1934-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1935-modified", + "UniqueId": "1935", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1935-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1936-modified", + "UniqueId": "1936", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1936-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1937-modified", + "UniqueId": "1937", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1937-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1938-modified", + "UniqueId": "1938", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1938-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1939-modified", + "UniqueId": "1939", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1939-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1940-modified", + "UniqueId": "1940", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1940-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1941-modified", + "UniqueId": "1941", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1941-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1942-modified", + "UniqueId": "1942", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1942-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1943-modified", + "UniqueId": "1943", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1943-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1944-modified", + "UniqueId": "1944", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1944-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1945-modified", + "UniqueId": "1945", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1945-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1946-modified", + "UniqueId": "1946", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1946-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1947-modified", + "UniqueId": "1947", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1947-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1948-modified", + "UniqueId": "1948", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1948-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1949-modified", + "UniqueId": "1949", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1949-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1950-modified", + "UniqueId": "1950", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1950-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1951-modified", + "UniqueId": "1951", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1951-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1952-modified", + "UniqueId": "1952", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1952-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1953-modified", + "UniqueId": "1953", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1953-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1954-modified", + "UniqueId": "1954", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1954-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1955-modified", + "UniqueId": "1955", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1955-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1956-modified", + "UniqueId": "1956", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1956-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1957-modified", + "UniqueId": "1957", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1957-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1958-modified", + "UniqueId": "1958", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1958-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1959-modified", + "UniqueId": "1959", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1959-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1960-modified", + "UniqueId": "1960", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1960-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1961-modified", + "UniqueId": "1961", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1961-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1962-modified", + "UniqueId": "1962", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1962-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1963-modified", + "UniqueId": "1963", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1963-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1964-modified", + "UniqueId": "1964", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1964-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1965-modified", + "UniqueId": "1965", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1965-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1966-modified", + "UniqueId": "1966", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1966-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1967-modified", + "UniqueId": "1967", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1967-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1968-modified", + "UniqueId": "1968", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1968-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1969-modified", + "UniqueId": "1969", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1969-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1970-modified", + "UniqueId": "1970", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1970-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1971-modified", + "UniqueId": "1971", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1971-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1972-modified", + "UniqueId": "1972", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1972-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1973-modified", + "UniqueId": "1973", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1973-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1974-modified", + "UniqueId": "1974", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1974-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1975-modified", + "UniqueId": "1975", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1975-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1976-modified", + "UniqueId": "1976", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1976-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1977-modified", + "UniqueId": "1977", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1977-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1978-modified", + "UniqueId": "1978", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1978-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1979-modified", + "UniqueId": "1979", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1979-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1980-modified", + "UniqueId": "1980", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1980-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1981-modified", + "UniqueId": "1981", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1981-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1982-modified", + "UniqueId": "1982", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1982-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1983-modified", + "UniqueId": "1983", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1983-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1984-modified", + "UniqueId": "1984", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1984-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1985-modified", + "UniqueId": "1985", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1985-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1986-modified", + "UniqueId": "1986", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1986-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1987-modified", + "UniqueId": "1987", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1987-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1988-modified", + "UniqueId": "1988", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1988-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1989-modified", + "UniqueId": "1989", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1989-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1990-modified", + "UniqueId": "1990", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1990-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1991-modified", + "UniqueId": "1991", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1991-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1992-modified", + "UniqueId": "1992", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1992-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1993-modified", + "UniqueId": "1993", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1993-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1994-modified", + "UniqueId": "1994", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1994-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "1995-modified", + "UniqueId": "1995", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1995-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1996-modified", + "UniqueId": "1996", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1996-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1997-modified", + "UniqueId": "1997", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1997-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1998-modified", + "UniqueId": "1998", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1998-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "1999-modified", + "UniqueId": "1999", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "1999-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2000-modified", + "UniqueId": "2000", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2000-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2001-modified", + "UniqueId": "2001", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2001-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2002-modified", + "UniqueId": "2002", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2002-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2003-modified", + "UniqueId": "2003", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2003-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2004-modified", + "UniqueId": "2004", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2004-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2005-modified", + "UniqueId": "2005", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2005-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2006-modified", + "UniqueId": "2006", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2006-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2007-modified", + "UniqueId": "2007", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2007-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2008-modified", + "UniqueId": "2008", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2008-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2009-modified", + "UniqueId": "2009", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2009-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2010-modified", + "UniqueId": "2010", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2010-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2011-modified", + "UniqueId": "2011", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2011-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2012-modified", + "UniqueId": "2012", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2012-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2013-modified", + "UniqueId": "2013", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2013-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2014-modified", + "UniqueId": "2014", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2014-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2015-modified", + "UniqueId": "2015", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2015-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2016-modified", + "UniqueId": "2016", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2016-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2017-modified", + "UniqueId": "2017", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2017-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2018-modified", + "UniqueId": "2018", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2018-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2019-modified", + "UniqueId": "2019", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2019-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2020-modified", + "UniqueId": "2020", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2020-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2021-modified", + "UniqueId": "2021", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2021-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2022-modified", + "UniqueId": "2022", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2022-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2023-modified", + "UniqueId": "2023", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2023-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2024-modified", + "UniqueId": "2024", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2024-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2025-modified", + "UniqueId": "2025", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2025-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2026-modified", + "UniqueId": "2026", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2026-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2027-modified", + "UniqueId": "2027", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2027-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2028-modified", + "UniqueId": "2028", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2028-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2029-modified", + "UniqueId": "2029", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2029-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2030-modified", + "UniqueId": "2030", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2030-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2031-modified", + "UniqueId": "2031", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2031-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2032-modified", + "UniqueId": "2032", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2032-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2033-modified", + "UniqueId": "2033", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2033-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2034-modified", + "UniqueId": "2034", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2034-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2035-modified", + "UniqueId": "2035", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2035-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2036-modified", + "UniqueId": "2036", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2036-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2037-modified", + "UniqueId": "2037", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2037-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2038-modified", + "UniqueId": "2038", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2038-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2039-modified", + "UniqueId": "2039", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2039-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2040-modified", + "UniqueId": "2040", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2040-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2041-modified", + "UniqueId": "2041", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2041-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2042-modified", + "UniqueId": "2042", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2042-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2043-modified", + "UniqueId": "2043", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2043-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2044-modified", + "UniqueId": "2044", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2044-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2045-modified", + "UniqueId": "2045", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2045-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2046-modified", + "UniqueId": "2046", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2046-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2047-modified", + "UniqueId": "2047", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2047-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2048-modified", + "UniqueId": "2048", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2048-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2049-modified", + "UniqueId": "2049", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2049-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2050-modified", + "UniqueId": "2050", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2050-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2051-modified", + "UniqueId": "2051", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2051-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2052-modified", + "UniqueId": "2052", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2052-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2053-modified", + "UniqueId": "2053", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2053-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2054-modified", + "UniqueId": "2054", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2054-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2055-modified", + "UniqueId": "2055", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2055-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2056-modified", + "UniqueId": "2056", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2056-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2057-modified", + "UniqueId": "2057", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2057-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2058-modified", + "UniqueId": "2058", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2058-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2059-modified", + "UniqueId": "2059", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2059-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2060-modified", + "UniqueId": "2060", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2060-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2061-modified", + "UniqueId": "2061", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2061-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2062-modified", + "UniqueId": "2062", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2062-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2063-modified", + "UniqueId": "2063", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2063-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2064-modified", + "UniqueId": "2064", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2064-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2065-modified", + "UniqueId": "2065", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2065-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2066-modified", + "UniqueId": "2066", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2066-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2067-modified", + "UniqueId": "2067", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2067-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2068-modified", + "UniqueId": "2068", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2068-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2069-modified", + "UniqueId": "2069", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2069-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2070-modified", + "UniqueId": "2070", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2070-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2071-modified", + "UniqueId": "2071", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2071-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2072-modified", + "UniqueId": "2072", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2072-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2073-modified", + "UniqueId": "2073", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2073-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2074-modified", + "UniqueId": "2074", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2074-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2075-modified", + "UniqueId": "2075", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2075-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2076-modified", + "UniqueId": "2076", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2076-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2077-modified", + "UniqueId": "2077", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2077-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2078-modified", + "UniqueId": "2078", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2078-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2079-modified", + "UniqueId": "2079", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2079-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2080-modified", + "UniqueId": "2080", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2080-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2081-modified", + "UniqueId": "2081", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2081-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2082-modified", + "UniqueId": "2082", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2082-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2083-modified", + "UniqueId": "2083", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2083-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2084-modified", + "UniqueId": "2084", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2084-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2085-modified", + "UniqueId": "2085", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2085-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2086-modified", + "UniqueId": "2086", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2086-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2087-modified", + "UniqueId": "2087", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2087-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2088-modified", + "UniqueId": "2088", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2088-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2089-modified", + "UniqueId": "2089", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2089-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2090-modified", + "UniqueId": "2090", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2090-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2091-modified", + "UniqueId": "2091", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2091-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2092-modified", + "UniqueId": "2092", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2092-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2093-modified", + "UniqueId": "2093", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2093-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2094-modified", + "UniqueId": "2094", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2094-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2095-modified", + "UniqueId": "2095", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2095-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2096-modified", + "UniqueId": "2096", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2096-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2097-modified", + "UniqueId": "2097", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2097-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2098-modified", + "UniqueId": "2098", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2098-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2099-modified", + "UniqueId": "2099", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2099-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2100-modified", + "UniqueId": "2100", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2100-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2101-modified", + "UniqueId": "2101", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2101-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2102-modified", + "UniqueId": "2102", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2102-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2103-modified", + "UniqueId": "2103", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2103-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2104-modified", + "UniqueId": "2104", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2104-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2105-modified", + "UniqueId": "2105", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2105-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2106-modified", + "UniqueId": "2106", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2106-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2107-modified", + "UniqueId": "2107", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2107-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2108-modified", + "UniqueId": "2108", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2108-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2109-modified", + "UniqueId": "2109", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2109-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2110-modified", + "UniqueId": "2110", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2110-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2111-modified", + "UniqueId": "2111", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2111-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2112-modified", + "UniqueId": "2112", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2112-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2113-modified", + "UniqueId": "2113", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2113-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2114-modified", + "UniqueId": "2114", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2114-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2115-modified", + "UniqueId": "2115", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2115-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2116-modified", + "UniqueId": "2116", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2116-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2117-modified", + "UniqueId": "2117", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2117-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2118-modified", + "UniqueId": "2118", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2118-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2119-modified", + "UniqueId": "2119", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2119-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2120-modified", + "UniqueId": "2120", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2120-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2121-modified", + "UniqueId": "2121", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2121-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2122-modified", + "UniqueId": "2122", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2122-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2123-modified", + "UniqueId": "2123", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2123-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2124-modified", + "UniqueId": "2124", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2124-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2125-modified", + "UniqueId": "2125", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2125-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2126-modified", + "UniqueId": "2126", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2126-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2127-modified", + "UniqueId": "2127", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2127-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2128-modified", + "UniqueId": "2128", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2128-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2129-modified", + "UniqueId": "2129", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2129-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2130-modified", + "UniqueId": "2130", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2130-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2131-modified", + "UniqueId": "2131", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2131-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2132-modified", + "UniqueId": "2132", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2132-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2133-modified", + "UniqueId": "2133", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2133-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2134-modified", + "UniqueId": "2134", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2134-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2135-modified", + "UniqueId": "2135", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2135-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2136-modified", + "UniqueId": "2136", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2136-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2137-modified", + "UniqueId": "2137", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2137-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2138-modified", + "UniqueId": "2138", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2138-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2139-modified", + "UniqueId": "2139", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2139-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2140-modified", + "UniqueId": "2140", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2140-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2141-modified", + "UniqueId": "2141", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2141-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2142-modified", + "UniqueId": "2142", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2142-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2143-modified", + "UniqueId": "2143", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2143-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2144-modified", + "UniqueId": "2144", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2144-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2145-modified", + "UniqueId": "2145", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2145-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2146-modified", + "UniqueId": "2146", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2146-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2147-modified", + "UniqueId": "2147", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2147-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2148-modified", + "UniqueId": "2148", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2148-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2149-modified", + "UniqueId": "2149", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2149-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2150-modified", + "UniqueId": "2150", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2150-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2151-modified", + "UniqueId": "2151", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2151-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2152-modified", + "UniqueId": "2152", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2152-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2153-modified", + "UniqueId": "2153", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2153-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2154-modified", + "UniqueId": "2154", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2154-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2155-modified", + "UniqueId": "2155", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2155-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2156-modified", + "UniqueId": "2156", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2156-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2157-modified", + "UniqueId": "2157", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2157-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2158-modified", + "UniqueId": "2158", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2158-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2159-modified", + "UniqueId": "2159", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2159-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2160-modified", + "UniqueId": "2160", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2160-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2161-modified", + "UniqueId": "2161", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2161-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2162-modified", + "UniqueId": "2162", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2162-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2163-modified", + "UniqueId": "2163", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2163-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2164-modified", + "UniqueId": "2164", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2164-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2165-modified", + "UniqueId": "2165", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2165-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2166-modified", + "UniqueId": "2166", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2166-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2167-modified", + "UniqueId": "2167", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2167-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2168-modified", + "UniqueId": "2168", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2168-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2169-modified", + "UniqueId": "2169", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2169-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2170-modified", + "UniqueId": "2170", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2170-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2171-modified", + "UniqueId": "2171", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2171-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2172-modified", + "UniqueId": "2172", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2172-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2173-modified", + "UniqueId": "2173", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2173-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2174-modified", + "UniqueId": "2174", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2174-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2175-modified", + "UniqueId": "2175", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2175-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2176-modified", + "UniqueId": "2176", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2176-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2177-modified", + "UniqueId": "2177", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2177-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2178-modified", + "UniqueId": "2178", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2178-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2179-modified", + "UniqueId": "2179", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2179-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2180-modified", + "UniqueId": "2180", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2180-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2181-modified", + "UniqueId": "2181", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2181-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2182-modified", + "UniqueId": "2182", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2182-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2183-modified", + "UniqueId": "2183", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2183-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2184-modified", + "UniqueId": "2184", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2184-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2185-modified", + "UniqueId": "2185", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2185-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2186-modified", + "UniqueId": "2186", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2186-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2187-modified", + "UniqueId": "2187", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2187-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2188-modified", + "UniqueId": "2188", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2188-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2189-modified", + "UniqueId": "2189", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2189-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2190-modified", + "UniqueId": "2190", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2190-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2191-modified", + "UniqueId": "2191", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2191-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2192-modified", + "UniqueId": "2192", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2192-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2193-modified", + "UniqueId": "2193", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2193-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2194-modified", + "UniqueId": "2194", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2194-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2195-modified", + "UniqueId": "2195", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2195-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2196-modified", + "UniqueId": "2196", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2196-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2197-modified", + "UniqueId": "2197", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2197-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2198-modified", + "UniqueId": "2198", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2198-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2199-modified", + "UniqueId": "2199", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2199-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2200-modified", + "UniqueId": "2200", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2200-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2201-modified", + "UniqueId": "2201", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2201-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2202-modified", + "UniqueId": "2202", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2202-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2203-modified", + "UniqueId": "2203", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2203-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2204-modified", + "UniqueId": "2204", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2204-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2205-modified", + "UniqueId": "2205", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2205-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2206-modified", + "UniqueId": "2206", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2206-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2207-modified", + "UniqueId": "2207", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2207-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2208-modified", + "UniqueId": "2208", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2208-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2209-modified", + "UniqueId": "2209", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2209-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2210-modified", + "UniqueId": "2210", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2210-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2211-modified", + "UniqueId": "2211", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2211-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2212-modified", + "UniqueId": "2212", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2212-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2213-modified", + "UniqueId": "2213", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2213-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2214-modified", + "UniqueId": "2214", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2214-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2215-modified", + "UniqueId": "2215", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2215-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2216-modified", + "UniqueId": "2216", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2216-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2217-modified", + "UniqueId": "2217", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2217-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2218-modified", + "UniqueId": "2218", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2218-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2219-modified", + "UniqueId": "2219", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2219-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2220-modified", + "UniqueId": "2220", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2220-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2221-modified", + "UniqueId": "2221", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2221-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2222-modified", + "UniqueId": "2222", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2222-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2223-modified", + "UniqueId": "2223", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2223-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2224-modified", + "UniqueId": "2224", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2224-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2225-modified", + "UniqueId": "2225", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2225-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2226-modified", + "UniqueId": "2226", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2226-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2227-modified", + "UniqueId": "2227", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2227-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2228-modified", + "UniqueId": "2228", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2228-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2229-modified", + "UniqueId": "2229", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2229-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2230-modified", + "UniqueId": "2230", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2230-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2231-modified", + "UniqueId": "2231", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2231-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2232-modified", + "UniqueId": "2232", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2232-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2233-modified", + "UniqueId": "2233", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2233-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2234-modified", + "UniqueId": "2234", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2234-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2235-modified", + "UniqueId": "2235", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2235-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2236-modified", + "UniqueId": "2236", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2236-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2237-modified", + "UniqueId": "2237", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2237-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2238-modified", + "UniqueId": "2238", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2238-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2239-modified", + "UniqueId": "2239", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2239-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2240-modified", + "UniqueId": "2240", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2240-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2241-modified", + "UniqueId": "2241", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2241-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2242-modified", + "UniqueId": "2242", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2242-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2243-modified", + "UniqueId": "2243", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2243-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2244-modified", + "UniqueId": "2244", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2244-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2245-modified", + "UniqueId": "2245", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2245-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2246-modified", + "UniqueId": "2246", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2246-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2247-modified", + "UniqueId": "2247", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2247-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2248-modified", + "UniqueId": "2248", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2248-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2249-modified", + "UniqueId": "2249", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2249-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2250-modified", + "UniqueId": "2250", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2250-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2251-modified", + "UniqueId": "2251", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2251-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2252-modified", + "UniqueId": "2252", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2252-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2253-modified", + "UniqueId": "2253", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2253-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2254-modified", + "UniqueId": "2254", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2254-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2255-modified", + "UniqueId": "2255", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2255-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2256-modified", + "UniqueId": "2256", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2256-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2257-modified", + "UniqueId": "2257", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2257-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2258-modified", + "UniqueId": "2258", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2258-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2259-modified", + "UniqueId": "2259", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2259-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2260-modified", + "UniqueId": "2260", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2260-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2261-modified", + "UniqueId": "2261", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2261-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2262-modified", + "UniqueId": "2262", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2262-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2263-modified", + "UniqueId": "2263", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2263-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2264-modified", + "UniqueId": "2264", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2264-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2265-modified", + "UniqueId": "2265", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2265-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2266-modified", + "UniqueId": "2266", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2266-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2267-modified", + "UniqueId": "2267", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2267-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2268-modified", + "UniqueId": "2268", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2268-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2269-modified", + "UniqueId": "2269", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2269-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2270-modified", + "UniqueId": "2270", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2270-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2271-modified", + "UniqueId": "2271", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2271-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2272-modified", + "UniqueId": "2272", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2272-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2273-modified", + "UniqueId": "2273", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2273-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2274-modified", + "UniqueId": "2274", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2274-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2275-modified", + "UniqueId": "2275", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2275-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2276-modified", + "UniqueId": "2276", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2276-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2277-modified", + "UniqueId": "2277", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2277-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2278-modified", + "UniqueId": "2278", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2278-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2279-modified", + "UniqueId": "2279", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2279-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2280-modified", + "UniqueId": "2280", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2280-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2281-modified", + "UniqueId": "2281", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2281-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2282-modified", + "UniqueId": "2282", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2282-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2283-modified", + "UniqueId": "2283", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2283-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2284-modified", + "UniqueId": "2284", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2284-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2285-modified", + "UniqueId": "2285", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2285-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2286-modified", + "UniqueId": "2286", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2286-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2287-modified", + "UniqueId": "2287", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2287-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2288-modified", + "UniqueId": "2288", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2288-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2289-modified", + "UniqueId": "2289", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2289-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2290-modified", + "UniqueId": "2290", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2290-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2291-modified", + "UniqueId": "2291", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2291-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2292-modified", + "UniqueId": "2292", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2292-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2293-modified", + "UniqueId": "2293", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2293-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2294-modified", + "UniqueId": "2294", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2294-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2295-modified", + "UniqueId": "2295", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2295-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2296-modified", + "UniqueId": "2296", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2296-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2297-modified", + "UniqueId": "2297", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2297-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2298-modified", + "UniqueId": "2298", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2298-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2299-modified", + "UniqueId": "2299", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2299-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2300-modified", + "UniqueId": "2300", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2300-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2301-modified", + "UniqueId": "2301", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2301-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2302-modified", + "UniqueId": "2302", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2302-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2303-modified", + "UniqueId": "2303", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2303-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2304-modified", + "UniqueId": "2304", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2304-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2305-modified", + "UniqueId": "2305", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2305-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2306-modified", + "UniqueId": "2306", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2306-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2307-modified", + "UniqueId": "2307", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2307-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2308-modified", + "UniqueId": "2308", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2308-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2309-modified", + "UniqueId": "2309", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2309-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2310-modified", + "UniqueId": "2310", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2310-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2311-modified", + "UniqueId": "2311", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2311-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2312-modified", + "UniqueId": "2312", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2312-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2313-modified", + "UniqueId": "2313", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2313-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2314-modified", + "UniqueId": "2314", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2314-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2315-modified", + "UniqueId": "2315", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2315-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2316-modified", + "UniqueId": "2316", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2316-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2317-modified", + "UniqueId": "2317", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2317-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2318-modified", + "UniqueId": "2318", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2318-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2319-modified", + "UniqueId": "2319", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2319-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2320-modified", + "UniqueId": "2320", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2320-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2321-modified", + "UniqueId": "2321", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2321-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2322-modified", + "UniqueId": "2322", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2322-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2323-modified", + "UniqueId": "2323", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2323-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2324-modified", + "UniqueId": "2324", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2324-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2325-modified", + "UniqueId": "2325", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2325-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2326-modified", + "UniqueId": "2326", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2326-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2327-modified", + "UniqueId": "2327", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2327-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2328-modified", + "UniqueId": "2328", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2328-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2329-modified", + "UniqueId": "2329", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2329-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2330-modified", + "UniqueId": "2330", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2330-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2331-modified", + "UniqueId": "2331", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2331-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2332-modified", + "UniqueId": "2332", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2332-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2333-modified", + "UniqueId": "2333", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2333-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2334-modified", + "UniqueId": "2334", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2334-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2335-modified", + "UniqueId": "2335", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2335-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2336-modified", + "UniqueId": "2336", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2336-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2337-modified", + "UniqueId": "2337", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2337-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2338-modified", + "UniqueId": "2338", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2338-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2339-modified", + "UniqueId": "2339", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2339-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2340-modified", + "UniqueId": "2340", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2340-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2341-modified", + "UniqueId": "2341", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2341-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2342-modified", + "UniqueId": "2342", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2342-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2343-modified", + "UniqueId": "2343", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2343-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2344-modified", + "UniqueId": "2344", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2344-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2345-modified", + "UniqueId": "2345", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2345-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2346-modified", + "UniqueId": "2346", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2346-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2347-modified", + "UniqueId": "2347", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2347-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2348-modified", + "UniqueId": "2348", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2348-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2349-modified", + "UniqueId": "2349", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2349-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2350-modified", + "UniqueId": "2350", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2350-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2351-modified", + "UniqueId": "2351", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2351-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2352-modified", + "UniqueId": "2352", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2352-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2353-modified", + "UniqueId": "2353", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2353-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2354-modified", + "UniqueId": "2354", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2354-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2355-modified", + "UniqueId": "2355", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2355-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2356-modified", + "UniqueId": "2356", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2356-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2357-modified", + "UniqueId": "2357", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2357-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2358-modified", + "UniqueId": "2358", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2358-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2359-modified", + "UniqueId": "2359", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2359-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2360-modified", + "UniqueId": "2360", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2360-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2361-modified", + "UniqueId": "2361", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2361-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2362-modified", + "UniqueId": "2362", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2362-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2363-modified", + "UniqueId": "2363", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2363-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2364-modified", + "UniqueId": "2364", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2364-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2365-modified", + "UniqueId": "2365", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2365-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2366-modified", + "UniqueId": "2366", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2366-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2367-modified", + "UniqueId": "2367", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2367-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2368-modified", + "UniqueId": "2368", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2368-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2369-modified", + "UniqueId": "2369", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2369-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2370-modified", + "UniqueId": "2370", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2370-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2371-modified", + "UniqueId": "2371", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2371-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2372-modified", + "UniqueId": "2372", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2372-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2373-modified", + "UniqueId": "2373", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2373-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2374-modified", + "UniqueId": "2374", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2374-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2375-modified", + "UniqueId": "2375", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2375-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2376-modified", + "UniqueId": "2376", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2376-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2377-modified", + "UniqueId": "2377", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2377-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2378-modified", + "UniqueId": "2378", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2378-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2379-modified", + "UniqueId": "2379", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2379-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2380-modified", + "UniqueId": "2380", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2380-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2381-modified", + "UniqueId": "2381", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2381-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2382-modified", + "UniqueId": "2382", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2382-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2383-modified", + "UniqueId": "2383", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2383-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2384-modified", + "UniqueId": "2384", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2384-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2385-modified", + "UniqueId": "2385", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2385-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2386-modified", + "UniqueId": "2386", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2386-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2387-modified", + "UniqueId": "2387", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2387-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2388-modified", + "UniqueId": "2388", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2388-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2389-modified", + "UniqueId": "2389", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2389-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2390-modified", + "UniqueId": "2390", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2390-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2391-modified", + "UniqueId": "2391", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2391-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2392-modified", + "UniqueId": "2392", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2392-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2393-modified", + "UniqueId": "2393", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2393-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2394-modified", + "UniqueId": "2394", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2394-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2395-modified", + "UniqueId": "2395", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2395-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2396-modified", + "UniqueId": "2396", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2396-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2397-modified", + "UniqueId": "2397", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2397-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2398-modified", + "UniqueId": "2398", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2398-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2399-modified", + "UniqueId": "2399", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2399-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2400-modified", + "UniqueId": "2400", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2400-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2401-modified", + "UniqueId": "2401", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2401-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2402-modified", + "UniqueId": "2402", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2402-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2403-modified", + "UniqueId": "2403", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2403-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2404-modified", + "UniqueId": "2404", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2404-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2405-modified", + "UniqueId": "2405", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2405-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2406-modified", + "UniqueId": "2406", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2406-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2407-modified", + "UniqueId": "2407", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2407-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2408-modified", + "UniqueId": "2408", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2408-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2409-modified", + "UniqueId": "2409", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2409-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2410-modified", + "UniqueId": "2410", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2410-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2411-modified", + "UniqueId": "2411", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2411-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2412-modified", + "UniqueId": "2412", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2412-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2413-modified", + "UniqueId": "2413", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2413-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2414-modified", + "UniqueId": "2414", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2414-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2415-modified", + "UniqueId": "2415", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2415-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2416-modified", + "UniqueId": "2416", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2416-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2417-modified", + "UniqueId": "2417", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2417-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2418-modified", + "UniqueId": "2418", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2418-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2419-modified", + "UniqueId": "2419", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2419-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2420-modified", + "UniqueId": "2420", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2420-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2421-modified", + "UniqueId": "2421", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2421-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2422-modified", + "UniqueId": "2422", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2422-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2423-modified", + "UniqueId": "2423", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2423-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2424-modified", + "UniqueId": "2424", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2424-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2425-modified", + "UniqueId": "2425", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2425-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2426-modified", + "UniqueId": "2426", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2426-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2427-modified", + "UniqueId": "2427", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2427-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2428-modified", + "UniqueId": "2428", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2428-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2429-modified", + "UniqueId": "2429", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2429-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2430-modified", + "UniqueId": "2430", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2430-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2431-modified", + "UniqueId": "2431", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2431-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2432-modified", + "UniqueId": "2432", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2432-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2433-modified", + "UniqueId": "2433", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2433-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2434-modified", + "UniqueId": "2434", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2434-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2435-modified", + "UniqueId": "2435", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2435-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2436-modified", + "UniqueId": "2436", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2436-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2437-modified", + "UniqueId": "2437", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2437-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2438-modified", + "UniqueId": "2438", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2438-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2439-modified", + "UniqueId": "2439", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2439-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2440-modified", + "UniqueId": "2440", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2440-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2441-modified", + "UniqueId": "2441", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2441-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2442-modified", + "UniqueId": "2442", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2442-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2443-modified", + "UniqueId": "2443", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2443-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2444-modified", + "UniqueId": "2444", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2444-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2445-modified", + "UniqueId": "2445", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2445-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2446-modified", + "UniqueId": "2446", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2446-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2447-modified", + "UniqueId": "2447", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2447-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2448-modified", + "UniqueId": "2448", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2448-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2449-modified", + "UniqueId": "2449", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2449-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2450-modified", + "UniqueId": "2450", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2450-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2451-modified", + "UniqueId": "2451", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2451-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2452-modified", + "UniqueId": "2452", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2452-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2453-modified", + "UniqueId": "2453", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2453-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2454-modified", + "UniqueId": "2454", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2454-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2455-modified", + "UniqueId": "2455", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2455-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2456-modified", + "UniqueId": "2456", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2456-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2457-modified", + "UniqueId": "2457", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2457-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2458-modified", + "UniqueId": "2458", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2458-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2459-modified", + "UniqueId": "2459", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2459-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2460-modified", + "UniqueId": "2460", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2460-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2461-modified", + "UniqueId": "2461", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2461-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2462-modified", + "UniqueId": "2462", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2462-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2463-modified", + "UniqueId": "2463", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2463-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2464-modified", + "UniqueId": "2464", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2464-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2465-modified", + "UniqueId": "2465", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2465-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2466-modified", + "UniqueId": "2466", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2466-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2467-modified", + "UniqueId": "2467", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2467-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2468-modified", + "UniqueId": "2468", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2468-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2469-modified", + "UniqueId": "2469", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2469-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2470-modified", + "UniqueId": "2470", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2470-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2471-modified", + "UniqueId": "2471", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2471-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2472-modified", + "UniqueId": "2472", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2472-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2473-modified", + "UniqueId": "2473", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2473-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2474-modified", + "UniqueId": "2474", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2474-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2475-modified", + "UniqueId": "2475", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2475-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2476-modified", + "UniqueId": "2476", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2476-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2477-modified", + "UniqueId": "2477", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2477-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2478-modified", + "UniqueId": "2478", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2478-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2479-modified", + "UniqueId": "2479", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2479-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2480-modified", + "UniqueId": "2480", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2480-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2481-modified", + "UniqueId": "2481", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2481-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2482-modified", + "UniqueId": "2482", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2482-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2483-modified", + "UniqueId": "2483", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2483-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2484-modified", + "UniqueId": "2484", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2484-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2485-modified", + "UniqueId": "2485", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2485-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2486-modified", + "UniqueId": "2486", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2486-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2487-modified", + "UniqueId": "2487", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2487-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2488-modified", + "UniqueId": "2488", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2488-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2489-modified", + "UniqueId": "2489", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2489-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2490-modified", + "UniqueId": "2490", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2490-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2491-modified", + "UniqueId": "2491", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2491-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2492-modified", + "UniqueId": "2492", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2492-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2493-modified", + "UniqueId": "2493", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2493-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2494-modified", + "UniqueId": "2494", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2494-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2495-modified", + "UniqueId": "2495", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2495-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2496-modified", + "UniqueId": "2496", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2496-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2497-modified", + "UniqueId": "2497", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2497-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2498-modified", + "UniqueId": "2498", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2498-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2499-modified", + "UniqueId": "2499", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2499-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2500-modified", + "UniqueId": "2500", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2500-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2501-modified", + "UniqueId": "2501", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2501-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2502-modified", + "UniqueId": "2502", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2502-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2503-modified", + "UniqueId": "2503", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2503-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2504-modified", + "UniqueId": "2504", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2504-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2505-modified", + "UniqueId": "2505", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2505-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2506-modified", + "UniqueId": "2506", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2506-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2507-modified", + "UniqueId": "2507", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2507-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2508-modified", + "UniqueId": "2508", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2508-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2509-modified", + "UniqueId": "2509", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2509-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2510-modified", + "UniqueId": "2510", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2510-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2511-modified", + "UniqueId": "2511", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2511-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2512-modified", + "UniqueId": "2512", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2512-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2513-modified", + "UniqueId": "2513", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2513-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2514-modified", + "UniqueId": "2514", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2514-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2515-modified", + "UniqueId": "2515", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2515-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2516-modified", + "UniqueId": "2516", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2516-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2517-modified", + "UniqueId": "2517", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2517-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2518-modified", + "UniqueId": "2518", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2518-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2519-modified", + "UniqueId": "2519", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2519-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2520-modified", + "UniqueId": "2520", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2520-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2521-modified", + "UniqueId": "2521", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2521-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2522-modified", + "UniqueId": "2522", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2522-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2523-modified", + "UniqueId": "2523", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2523-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2524-modified", + "UniqueId": "2524", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2524-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2525-modified", + "UniqueId": "2525", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2525-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2526-modified", + "UniqueId": "2526", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2526-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2527-modified", + "UniqueId": "2527", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2527-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2528-modified", + "UniqueId": "2528", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2528-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2529-modified", + "UniqueId": "2529", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2529-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2530-modified", + "UniqueId": "2530", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2530-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2531-modified", + "UniqueId": "2531", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2531-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2532-modified", + "UniqueId": "2532", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2532-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2533-modified", + "UniqueId": "2533", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2533-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2534-modified", + "UniqueId": "2534", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2534-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2535-modified", + "UniqueId": "2535", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2535-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2536-modified", + "UniqueId": "2536", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2536-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2537-modified", + "UniqueId": "2537", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2537-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2538-modified", + "UniqueId": "2538", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2538-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2539-modified", + "UniqueId": "2539", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2539-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2540-modified", + "UniqueId": "2540", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2540-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2541-modified", + "UniqueId": "2541", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2541-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2542-modified", + "UniqueId": "2542", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2542-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2543-modified", + "UniqueId": "2543", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2543-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2544-modified", + "UniqueId": "2544", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2544-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2545-modified", + "UniqueId": "2545", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2545-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2546-modified", + "UniqueId": "2546", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2546-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2547-modified", + "UniqueId": "2547", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2547-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2548-modified", + "UniqueId": "2548", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2548-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2549-modified", + "UniqueId": "2549", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2549-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2550-modified", + "UniqueId": "2550", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2550-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2551-modified", + "UniqueId": "2551", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2551-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2552-modified", + "UniqueId": "2552", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2552-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2553-modified", + "UniqueId": "2553", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2553-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2554-modified", + "UniqueId": "2554", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2554-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2555-modified", + "UniqueId": "2555", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2555-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2556-modified", + "UniqueId": "2556", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2556-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2557-modified", + "UniqueId": "2557", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2557-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2558-modified", + "UniqueId": "2558", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2558-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2559-modified", + "UniqueId": "2559", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2559-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2560-modified", + "UniqueId": "2560", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2560-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2561-modified", + "UniqueId": "2561", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2561-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2562-modified", + "UniqueId": "2562", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2562-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2563-modified", + "UniqueId": "2563", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2563-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2564-modified", + "UniqueId": "2564", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2564-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2565-modified", + "UniqueId": "2565", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2565-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2566-modified", + "UniqueId": "2566", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2566-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2567-modified", + "UniqueId": "2567", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2567-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2568-modified", + "UniqueId": "2568", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2568-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2569-modified", + "UniqueId": "2569", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2569-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2570-modified", + "UniqueId": "2570", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2570-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2571-modified", + "UniqueId": "2571", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2571-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2572-modified", + "UniqueId": "2572", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2572-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2573-modified", + "UniqueId": "2573", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2573-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2574-modified", + "UniqueId": "2574", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2574-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2575-modified", + "UniqueId": "2575", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2575-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2576-modified", + "UniqueId": "2576", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2576-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2577-modified", + "UniqueId": "2577", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2577-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2578-modified", + "UniqueId": "2578", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2578-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2579-modified", + "UniqueId": "2579", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2579-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2580-modified", + "UniqueId": "2580", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2580-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2581-modified", + "UniqueId": "2581", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2581-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2582-modified", + "UniqueId": "2582", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2582-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2583-modified", + "UniqueId": "2583", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2583-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2584-modified", + "UniqueId": "2584", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2584-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2585-modified", + "UniqueId": "2585", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2585-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2586-modified", + "UniqueId": "2586", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2586-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2587-modified", + "UniqueId": "2587", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2587-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2588-modified", + "UniqueId": "2588", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2588-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2589-modified", + "UniqueId": "2589", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2589-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2590-modified", + "UniqueId": "2590", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2590-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2591-modified", + "UniqueId": "2591", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2591-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2592-modified", + "UniqueId": "2592", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2592-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2593-modified", + "UniqueId": "2593", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2593-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2594-modified", + "UniqueId": "2594", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2594-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2595-modified", + "UniqueId": "2595", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2595-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2596-modified", + "UniqueId": "2596", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2596-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2597-modified", + "UniqueId": "2597", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2597-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2598-modified", + "UniqueId": "2598", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2598-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2599-modified", + "UniqueId": "2599", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2599-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2600-modified", + "UniqueId": "2600", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2600-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2601-modified", + "UniqueId": "2601", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2601-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2602-modified", + "UniqueId": "2602", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2602-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2603-modified", + "UniqueId": "2603", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2603-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2604-modified", + "UniqueId": "2604", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2604-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2605-modified", + "UniqueId": "2605", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2605-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2606-modified", + "UniqueId": "2606", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2606-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2607-modified", + "UniqueId": "2607", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2607-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2608-modified", + "UniqueId": "2608", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2608-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2609-modified", + "UniqueId": "2609", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2609-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2610-modified", + "UniqueId": "2610", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2610-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2611-modified", + "UniqueId": "2611", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2611-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2612-modified", + "UniqueId": "2612", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2612-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2613-modified", + "UniqueId": "2613", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2613-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2614-modified", + "UniqueId": "2614", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2614-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2615-modified", + "UniqueId": "2615", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2615-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2616-modified", + "UniqueId": "2616", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2616-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2617-modified", + "UniqueId": "2617", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2617-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2618-modified", + "UniqueId": "2618", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2618-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2619-modified", + "UniqueId": "2619", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2619-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2620-modified", + "UniqueId": "2620", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2620-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2621-modified", + "UniqueId": "2621", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2621-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2622-modified", + "UniqueId": "2622", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2622-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2623-modified", + "UniqueId": "2623", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2623-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2624-modified", + "UniqueId": "2624", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2624-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2625-modified", + "UniqueId": "2625", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2625-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2626-modified", + "UniqueId": "2626", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2626-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2627-modified", + "UniqueId": "2627", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2627-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2628-modified", + "UniqueId": "2628", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2628-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2629-modified", + "UniqueId": "2629", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2629-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2630-modified", + "UniqueId": "2630", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2630-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2631-modified", + "UniqueId": "2631", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2631-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2632-modified", + "UniqueId": "2632", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2632-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2633-modified", + "UniqueId": "2633", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2633-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2634-modified", + "UniqueId": "2634", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2634-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2635-modified", + "UniqueId": "2635", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2635-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2636-modified", + "UniqueId": "2636", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2636-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2637-modified", + "UniqueId": "2637", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2637-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2638-modified", + "UniqueId": "2638", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2638-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2639-modified", + "UniqueId": "2639", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2639-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2640-modified", + "UniqueId": "2640", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2640-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2641-modified", + "UniqueId": "2641", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2641-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2642-modified", + "UniqueId": "2642", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2642-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2643-modified", + "UniqueId": "2643", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2643-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2644-modified", + "UniqueId": "2644", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2644-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2645-modified", + "UniqueId": "2645", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2645-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2646-modified", + "UniqueId": "2646", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2646-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2647-modified", + "UniqueId": "2647", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2647-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2648-modified", + "UniqueId": "2648", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2648-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2649-modified", + "UniqueId": "2649", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2649-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2650-modified", + "UniqueId": "2650", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2650-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2651-modified", + "UniqueId": "2651", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2651-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2652-modified", + "UniqueId": "2652", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2652-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2653-modified", + "UniqueId": "2653", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2653-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2654-modified", + "UniqueId": "2654", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2654-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2655-modified", + "UniqueId": "2655", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2655-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2656-modified", + "UniqueId": "2656", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2656-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2657-modified", + "UniqueId": "2657", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2657-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2658-modified", + "UniqueId": "2658", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2658-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2659-modified", + "UniqueId": "2659", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2659-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2660-modified", + "UniqueId": "2660", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2660-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2661-modified", + "UniqueId": "2661", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2661-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2662-modified", + "UniqueId": "2662", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2662-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2663-modified", + "UniqueId": "2663", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2663-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2664-modified", + "UniqueId": "2664", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2664-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2665-modified", + "UniqueId": "2665", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2665-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2666-modified", + "UniqueId": "2666", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2666-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2667-modified", + "UniqueId": "2667", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2667-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2668-modified", + "UniqueId": "2668", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2668-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2669-modified", + "UniqueId": "2669", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2669-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2670-modified", + "UniqueId": "2670", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2670-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2671-modified", + "UniqueId": "2671", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2671-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2672-modified", + "UniqueId": "2672", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2672-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2673-modified", + "UniqueId": "2673", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2673-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2674-modified", + "UniqueId": "2674", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2674-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2675-modified", + "UniqueId": "2675", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2675-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2676-modified", + "UniqueId": "2676", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2676-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2677-modified", + "UniqueId": "2677", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2677-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2678-modified", + "UniqueId": "2678", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2678-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2679-modified", + "UniqueId": "2679", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2679-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2680-modified", + "UniqueId": "2680", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2680-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2681-modified", + "UniqueId": "2681", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2681-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2682-modified", + "UniqueId": "2682", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2682-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2683-modified", + "UniqueId": "2683", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2683-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2684-modified", + "UniqueId": "2684", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2684-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2685-modified", + "UniqueId": "2685", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2685-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2686-modified", + "UniqueId": "2686", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2686-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2687-modified", + "UniqueId": "2687", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2687-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2688-modified", + "UniqueId": "2688", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2688-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2689-modified", + "UniqueId": "2689", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2689-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2690-modified", + "UniqueId": "2690", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2690-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2691-modified", + "UniqueId": "2691", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2691-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2692-modified", + "UniqueId": "2692", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2692-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2693-modified", + "UniqueId": "2693", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2693-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2694-modified", + "UniqueId": "2694", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2694-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2695-modified", + "UniqueId": "2695", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2695-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2696-modified", + "UniqueId": "2696", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2696-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2697-modified", + "UniqueId": "2697", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2697-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2698-modified", + "UniqueId": "2698", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2698-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2699-modified", + "UniqueId": "2699", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2699-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2700-modified", + "UniqueId": "2700", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2700-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2701-modified", + "UniqueId": "2701", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2701-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2702-modified", + "UniqueId": "2702", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2702-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2703-modified", + "UniqueId": "2703", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2703-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2704-modified", + "UniqueId": "2704", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2704-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2705-modified", + "UniqueId": "2705", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2705-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2706-modified", + "UniqueId": "2706", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2706-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2707-modified", + "UniqueId": "2707", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2707-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2708-modified", + "UniqueId": "2708", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2708-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2709-modified", + "UniqueId": "2709", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2709-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2710-modified", + "UniqueId": "2710", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2710-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2711-modified", + "UniqueId": "2711", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2711-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2712-modified", + "UniqueId": "2712", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2712-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2713-modified", + "UniqueId": "2713", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2713-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2714-modified", + "UniqueId": "2714", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2714-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2715-modified", + "UniqueId": "2715", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2715-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2716-modified", + "UniqueId": "2716", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2716-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2717-modified", + "UniqueId": "2717", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2717-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2718-modified", + "UniqueId": "2718", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2718-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2719-modified", + "UniqueId": "2719", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2719-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2720-modified", + "UniqueId": "2720", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2720-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2721-modified", + "UniqueId": "2721", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2721-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2722-modified", + "UniqueId": "2722", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2722-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2723-modified", + "UniqueId": "2723", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2723-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2724-modified", + "UniqueId": "2724", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2724-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2725-modified", + "UniqueId": "2725", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2725-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2726-modified", + "UniqueId": "2726", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2726-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2727-modified", + "UniqueId": "2727", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2727-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2728-modified", + "UniqueId": "2728", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2728-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2729-modified", + "UniqueId": "2729", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2729-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2730-modified", + "UniqueId": "2730", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2730-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2731-modified", + "UniqueId": "2731", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2731-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2732-modified", + "UniqueId": "2732", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2732-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2733-modified", + "UniqueId": "2733", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2733-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2734-modified", + "UniqueId": "2734", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2734-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2735-modified", + "UniqueId": "2735", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2735-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2736-modified", + "UniqueId": "2736", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2736-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2737-modified", + "UniqueId": "2737", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2737-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2738-modified", + "UniqueId": "2738", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2738-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2739-modified", + "UniqueId": "2739", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2739-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2740-modified", + "UniqueId": "2740", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2740-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2741-modified", + "UniqueId": "2741", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2741-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2742-modified", + "UniqueId": "2742", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2742-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2743-modified", + "UniqueId": "2743", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2743-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2744-modified", + "UniqueId": "2744", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2744-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2745-modified", + "UniqueId": "2745", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2745-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2746-modified", + "UniqueId": "2746", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2746-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2747-modified", + "UniqueId": "2747", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2747-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2748-modified", + "UniqueId": "2748", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2748-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2749-modified", + "UniqueId": "2749", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2749-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2750-modified", + "UniqueId": "2750", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2750-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2751-modified", + "UniqueId": "2751", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2751-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2752-modified", + "UniqueId": "2752", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2752-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2753-modified", + "UniqueId": "2753", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2753-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2754-modified", + "UniqueId": "2754", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2754-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2755-modified", + "UniqueId": "2755", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2755-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2756-modified", + "UniqueId": "2756", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2756-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2757-modified", + "UniqueId": "2757", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2757-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2758-modified", + "UniqueId": "2758", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2758-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2759-modified", + "UniqueId": "2759", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2759-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2760-modified", + "UniqueId": "2760", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2760-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2761-modified", + "UniqueId": "2761", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2761-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2762-modified", + "UniqueId": "2762", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2762-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2763-modified", + "UniqueId": "2763", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2763-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2764-modified", + "UniqueId": "2764", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2764-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2765-modified", + "UniqueId": "2765", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2765-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2766-modified", + "UniqueId": "2766", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2766-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2767-modified", + "UniqueId": "2767", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2767-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2768-modified", + "UniqueId": "2768", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2768-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2769-modified", + "UniqueId": "2769", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2769-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2770-modified", + "UniqueId": "2770", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2770-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2771-modified", + "UniqueId": "2771", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2771-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2772-modified", + "UniqueId": "2772", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2772-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2773-modified", + "UniqueId": "2773", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2773-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2774-modified", + "UniqueId": "2774", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2774-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2775-modified", + "UniqueId": "2775", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2775-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2776-modified", + "UniqueId": "2776", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2776-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2777-modified", + "UniqueId": "2777", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2777-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2778-modified", + "UniqueId": "2778", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2778-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2779-modified", + "UniqueId": "2779", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2779-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2780-modified", + "UniqueId": "2780", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2780-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2781-modified", + "UniqueId": "2781", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2781-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2782-modified", + "UniqueId": "2782", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2782-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2783-modified", + "UniqueId": "2783", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2783-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2784-modified", + "UniqueId": "2784", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2784-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2785-modified", + "UniqueId": "2785", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2785-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2786-modified", + "UniqueId": "2786", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2786-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2787-modified", + "UniqueId": "2787", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2787-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2788-modified", + "UniqueId": "2788", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2788-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2789-modified", + "UniqueId": "2789", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2789-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2790-modified", + "UniqueId": "2790", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2790-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2791-modified", + "UniqueId": "2791", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2791-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2792-modified", + "UniqueId": "2792", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2792-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2793-modified", + "UniqueId": "2793", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2793-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2794-modified", + "UniqueId": "2794", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2794-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2795-modified", + "UniqueId": "2795", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2795-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2796-modified", + "UniqueId": "2796", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2796-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2797-modified", + "UniqueId": "2797", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2797-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2798-modified", + "UniqueId": "2798", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2798-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2799-modified", + "UniqueId": "2799", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2799-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2800-modified", + "UniqueId": "2800", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2800-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2801-modified", + "UniqueId": "2801", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2801-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2802-modified", + "UniqueId": "2802", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2802-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2803-modified", + "UniqueId": "2803", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2803-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2804-modified", + "UniqueId": "2804", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2804-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2805-modified", + "UniqueId": "2805", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2805-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2806-modified", + "UniqueId": "2806", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2806-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2807-modified", + "UniqueId": "2807", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2807-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2808-modified", + "UniqueId": "2808", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2808-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2809-modified", + "UniqueId": "2809", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2809-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2810-modified", + "UniqueId": "2810", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2810-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2811-modified", + "UniqueId": "2811", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2811-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2812-modified", + "UniqueId": "2812", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2812-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2813-modified", + "UniqueId": "2813", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2813-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2814-modified", + "UniqueId": "2814", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2814-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2815-modified", + "UniqueId": "2815", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2815-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2816-modified", + "UniqueId": "2816", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2816-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2817-modified", + "UniqueId": "2817", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2817-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2818-modified", + "UniqueId": "2818", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2818-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2819-modified", + "UniqueId": "2819", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2819-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2820-modified", + "UniqueId": "2820", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2820-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2821-modified", + "UniqueId": "2821", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2821-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2822-modified", + "UniqueId": "2822", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2822-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2823-modified", + "UniqueId": "2823", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2823-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2824-modified", + "UniqueId": "2824", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2824-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2825-modified", + "UniqueId": "2825", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2825-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2826-modified", + "UniqueId": "2826", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2826-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2827-modified", + "UniqueId": "2827", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2827-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2828-modified", + "UniqueId": "2828", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2828-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2829-modified", + "UniqueId": "2829", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2829-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2830-modified", + "UniqueId": "2830", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2830-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2831-modified", + "UniqueId": "2831", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2831-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2832-modified", + "UniqueId": "2832", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2832-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2833-modified", + "UniqueId": "2833", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2833-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2834-modified", + "UniqueId": "2834", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2834-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2835-modified", + "UniqueId": "2835", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2835-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2836-modified", + "UniqueId": "2836", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2836-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2837-modified", + "UniqueId": "2837", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2837-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2838-modified", + "UniqueId": "2838", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2838-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2839-modified", + "UniqueId": "2839", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2839-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2840-modified", + "UniqueId": "2840", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2840-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2841-modified", + "UniqueId": "2841", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2841-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2842-modified", + "UniqueId": "2842", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2842-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2843-modified", + "UniqueId": "2843", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2843-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2844-modified", + "UniqueId": "2844", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2844-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2845-modified", + "UniqueId": "2845", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2845-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2846-modified", + "UniqueId": "2846", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2846-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2847-modified", + "UniqueId": "2847", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2847-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2848-modified", + "UniqueId": "2848", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2848-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2849-modified", + "UniqueId": "2849", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2849-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2850-modified", + "UniqueId": "2850", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2850-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2851-modified", + "UniqueId": "2851", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2851-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2852-modified", + "UniqueId": "2852", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2852-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2853-modified", + "UniqueId": "2853", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2853-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2854-modified", + "UniqueId": "2854", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2854-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2855-modified", + "UniqueId": "2855", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2855-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2856-modified", + "UniqueId": "2856", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2856-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2857-modified", + "UniqueId": "2857", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2857-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2858-modified", + "UniqueId": "2858", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2858-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2859-modified", + "UniqueId": "2859", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2859-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2860-modified", + "UniqueId": "2860", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2860-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2861-modified", + "UniqueId": "2861", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2861-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2862-modified", + "UniqueId": "2862", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2862-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2863-modified", + "UniqueId": "2863", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2863-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2864-modified", + "UniqueId": "2864", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2864-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2865-modified", + "UniqueId": "2865", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2865-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2866-modified", + "UniqueId": "2866", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2866-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2867-modified", + "UniqueId": "2867", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2867-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2868-modified", + "UniqueId": "2868", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2868-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2869-modified", + "UniqueId": "2869", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2869-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2870-modified", + "UniqueId": "2870", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2870-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2871-modified", + "UniqueId": "2871", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2871-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2872-modified", + "UniqueId": "2872", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2872-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2873-modified", + "UniqueId": "2873", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2873-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2874-modified", + "UniqueId": "2874", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2874-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2875-modified", + "UniqueId": "2875", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2875-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2876-modified", + "UniqueId": "2876", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2876-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2877-modified", + "UniqueId": "2877", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2877-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2878-modified", + "UniqueId": "2878", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2878-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2879-modified", + "UniqueId": "2879", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2879-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2880-modified", + "UniqueId": "2880", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2880-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2881-modified", + "UniqueId": "2881", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2881-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2882-modified", + "UniqueId": "2882", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2882-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2883-modified", + "UniqueId": "2883", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2883-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2884-modified", + "UniqueId": "2884", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2884-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2885-modified", + "UniqueId": "2885", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2885-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2886-modified", + "UniqueId": "2886", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2886-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2887-modified", + "UniqueId": "2887", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2887-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2888-modified", + "UniqueId": "2888", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2888-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2889-modified", + "UniqueId": "2889", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2889-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2890-modified", + "UniqueId": "2890", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2890-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2891-modified", + "UniqueId": "2891", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2891-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2892-modified", + "UniqueId": "2892", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2892-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2893-modified", + "UniqueId": "2893", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2893-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2894-modified", + "UniqueId": "2894", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2894-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2895-modified", + "UniqueId": "2895", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2895-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2896-modified", + "UniqueId": "2896", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2896-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2897-modified", + "UniqueId": "2897", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2897-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2898-modified", + "UniqueId": "2898", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2898-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2899-modified", + "UniqueId": "2899", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2899-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2900-modified", + "UniqueId": "2900", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2900-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2901-modified", + "UniqueId": "2901", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2901-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2902-modified", + "UniqueId": "2902", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2902-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2903-modified", + "UniqueId": "2903", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2903-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2904-modified", + "UniqueId": "2904", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2904-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2905-modified", + "UniqueId": "2905", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2905-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2906-modified", + "UniqueId": "2906", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2906-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2907-modified", + "UniqueId": "2907", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2907-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2908-modified", + "UniqueId": "2908", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2908-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2909-modified", + "UniqueId": "2909", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2909-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2910-modified", + "UniqueId": "2910", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2910-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2911-modified", + "UniqueId": "2911", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2911-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2912-modified", + "UniqueId": "2912", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2912-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2913-modified", + "UniqueId": "2913", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2913-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2914-modified", + "UniqueId": "2914", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2914-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2915-modified", + "UniqueId": "2915", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2915-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2916-modified", + "UniqueId": "2916", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2916-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2917-modified", + "UniqueId": "2917", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2917-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2918-modified", + "UniqueId": "2918", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2918-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2919-modified", + "UniqueId": "2919", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2919-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2920-modified", + "UniqueId": "2920", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2920-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2921-modified", + "UniqueId": "2921", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2921-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2922-modified", + "UniqueId": "2922", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2922-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2923-modified", + "UniqueId": "2923", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2923-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2924-modified", + "UniqueId": "2924", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2924-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2925-modified", + "UniqueId": "2925", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2925-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2926-modified", + "UniqueId": "2926", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2926-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2927-modified", + "UniqueId": "2927", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2927-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2928-modified", + "UniqueId": "2928", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2928-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2929-modified", + "UniqueId": "2929", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2929-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2930-modified", + "UniqueId": "2930", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2930-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2931-modified", + "UniqueId": "2931", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2931-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2932-modified", + "UniqueId": "2932", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2932-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2933-modified", + "UniqueId": "2933", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2933-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2934-modified", + "UniqueId": "2934", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2934-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2935-modified", + "UniqueId": "2935", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2935-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2936-modified", + "UniqueId": "2936", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2936-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2937-modified", + "UniqueId": "2937", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2937-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2938-modified", + "UniqueId": "2938", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2938-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2939-modified", + "UniqueId": "2939", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2939-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2940-modified", + "UniqueId": "2940", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2940-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2941-modified", + "UniqueId": "2941", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2941-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2942-modified", + "UniqueId": "2942", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2942-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2943-modified", + "UniqueId": "2943", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2943-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2944-modified", + "UniqueId": "2944", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2944-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2945-modified", + "UniqueId": "2945", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2945-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2946-modified", + "UniqueId": "2946", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2946-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2947-modified", + "UniqueId": "2947", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2947-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2948-modified", + "UniqueId": "2948", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2948-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2949-modified", + "UniqueId": "2949", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2949-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2950-modified", + "UniqueId": "2950", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2950-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2951-modified", + "UniqueId": "2951", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2951-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2952-modified", + "UniqueId": "2952", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2952-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2953-modified", + "UniqueId": "2953", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2953-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2954-modified", + "UniqueId": "2954", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2954-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2955-modified", + "UniqueId": "2955", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2955-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "seahorse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2956-modified", + "UniqueId": "2956", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2956-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2957-modified", + "UniqueId": "2957", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2957-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2958-modified", + "UniqueId": "2958", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2958-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2959-modified", + "UniqueId": "2959", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2959-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2960-modified", + "UniqueId": "2960", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2960-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2961-modified", + "UniqueId": "2961", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2961-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2962-modified", + "UniqueId": "2962", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2962-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2963-modified", + "UniqueId": "2963", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2963-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2964-modified", + "UniqueId": "2964", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2964-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2965-modified", + "UniqueId": "2965", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2965-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2966-modified", + "UniqueId": "2966", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2966-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2967-modified", + "UniqueId": "2967", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2967-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2968-modified", + "UniqueId": "2968", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2968-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 2, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 1, + "Undervotes": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2969-modified", + "UniqueId": "2969", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2969-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2970-modified", + "UniqueId": "2970", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2970-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2971-modified", + "UniqueId": "2971", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2971-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2972-modified", + "UniqueId": "2972", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2972-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2973-modified", + "UniqueId": "2973", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2973-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2974-modified", + "UniqueId": "2974", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2974-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2975-modified", + "UniqueId": "2975", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2975-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2976-modified", + "UniqueId": "2976", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2976-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2977-modified", + "UniqueId": "2977", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2977-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2978-modified", + "UniqueId": "2978", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2978-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2979-modified", + "UniqueId": "2979", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2979-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2980-modified", + "UniqueId": "2980", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2980-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2981-modified", + "UniqueId": "2981", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2981-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2982-modified", + "UniqueId": "2982", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2982-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2983-modified", + "UniqueId": "2983", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2983-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2984-modified", + "UniqueId": "2984", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2984-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2985-modified", + "UniqueId": "2985", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2985-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2986-modified", + "UniqueId": "2986", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2986-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "triggerfish", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2987-modified", + "UniqueId": "2987", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2987-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2988-modified", + "UniqueId": "2988", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2988-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-2__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2989-modified", + "UniqueId": "2989", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2989-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "rockfish", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2990-modified", + "UniqueId": "2990", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2990-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-0", + "OptionPosition": 4, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2991-modified", + "UniqueId": "2991", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2991-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-1", + "OptionPosition": 5, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/2F__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2992-modified", + "UniqueId": "2992", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2992-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["undervoted"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "no", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2993-modified", + "UniqueId": "2993", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2993-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "salmon", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "manta-ray", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "pufferfish", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2994-modified", + "UniqueId": "2994", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2994-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "horse", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 1, + "Undervotes": 0, + "WriteIns": 0, + "Status": ["overvoted", "invalidated-rules"], + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "Status": ["invalidated-rules"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "no", + "Status": ["invalidated-rules"] + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2995-modified", + "UniqueId": "2995", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2995-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-2", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "absentee", + "BallotSheetId": "1", + "CurrentSnapshotId": "2996-modified", + "UniqueId": "2996", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2996-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "fox", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "kangaroo", + "OptionPosition": 2, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "elephant", + "OptionPosition": 3, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "2F", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["1"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2997-modified", + "UniqueId": "2997", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2997-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-fish", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "aquarium-council-fish", + "Overvotes": 0, + "Undervotes": 2, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2998-modified", + "UniqueId": "2998", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2998-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "otter", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 0, + "WriteIns": 1, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "zebra", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "lion", + "OptionPosition": 1, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + }, + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "write-in-2", + "OptionPosition": 6, + "Status": ["needs-adjudication"], + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "unknown", + "CVRWriteIn": { + "@type": "CVR.CVRWriteIn", + "WriteInImage": { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + } + } + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 1, + "Status": ["undervoted", "not-indicated"], + "CVRContestSelection": [] + } + ] + } + ], + "BallotImage": [ + { + "@type": "CVR.ImageData", + "Location": "file:./ballot-images/batch-1/1M__precinct-1__1.jpg" + }, + { "@type": "CVR.ImageData" } + ] + }, + { + "@type": "CVR.CVR", + "BallotStyleId": "1M", + "BallotStyleUnitId": "precinct-1", + "PartyIds": ["0"], + "CreatingDeviceId": "scanner", + "ElectionId": "e38b66442647f4bc87a08e3e4f0986db3c354a58b0790096b88c2e208e18cd08", + "BatchId": "batch-1", + "vxBallotType": "precinct", + "BallotSheetId": "1", + "CurrentSnapshotId": "2999-modified", + "UniqueId": "2999", + "CVRSnapshot": [ + { + "@type": "CVR.CVRSnapshot", + "@id": "2999-modified", + "Type": "modified", + "CVRContest": [ + { + "@type": "CVR.CVRContest", + "ContestId": "best-animal-mammal", + "Overvotes": 0, + "Undervotes": 1, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "zoo-council-mammal", + "Overvotes": 0, + "Undervotes": 3, + "WriteIns": 0, + "Status": ["not-indicated", "undervoted"], + "CVRContestSelection": [] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-either", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "new-zoo-pick", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + }, + { + "@type": "CVR.CVRContest", + "ContestId": "fishing", + "Overvotes": 0, + "Undervotes": 0, + "CVRContestSelection": [ + { + "@type": "CVR.CVRContestSelection", + "ContestSelectionId": "yes", + "OptionPosition": 0, + "SelectionPosition": [ + { + "@type": "CVR.SelectionPosition", + "HasIndication": "yes", + "NumberVotes": 1, + "IsAllocable": "yes" + } + ] + } + ] + } + ] + } + ] + } + ] +} diff --git a/libs/fixtures/package.json b/libs/fixtures/package.json index dd5a0674f..7def28a11 100644 --- a/libs/fixtures/package.json +++ b/libs/fixtures/package.json @@ -14,7 +14,7 @@ "scripts": { "type-check": "tsc --build", "build": "tsc --build tsconfig.build.json", - "build:resources": "res-to-ts --rootDir data --outDir src/data 'data/**/*.{csv,jsonl,json,txt,jpeg,jpg,png,pdf,xml,zip}'", + "build:resources": "bash build_resources.sh", "clean": "rm -rf build tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo", "lint": "pnpm type-check && eslint .", "lint:fix": "pnpm type-check && eslint . --fix", diff --git a/libs/fixtures/src/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard.ts b/libs/fixtures/src/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard.ts new file mode 100644 index 000000000..e28cd24ac --- /dev/null +++ b/libs/fixtures/src/data/electionMinimalExhaustiveSample/cdf-cvr-files/standard.ts @@ -0,0 +1,29 @@ +/* Generated by res-to-ts. DO NOT EDIT */ +/* eslint-disable */ +/* istanbul ignore file */ + +import * as fs from 'fs'; +import { tmpdir } from 'os'; +import { resolve, sep } from 'path'; + +const copiedDirectories: string[] = []; + +if (typeof jest !== 'undefined') { + afterAll(() => { + for (const copiedDirectory of copiedDirectories) { + fs.rmSync(copiedDirectory, { recursive: true, force: true }); + } + }); +} + +export function asDirectoryPath(): string { + const tmpDir = fs.mkdtempSync(tmpdir() + sep); + const resolved = resolve( + __dirname, + '../../../../data/electionMinimalExhaustiveSample/cdf-cvr-files/standard' + ); + fs.cpSync(resolved, tmpDir, { recursive: true }); + copiedDirectories.push(tmpDir); + return tmpDir; +} + diff --git a/libs/fixtures/src/data/electionMinimalExhaustiveSample/index.ts b/libs/fixtures/src/data/electionMinimalExhaustiveSample/index.ts index c775a2b7f..f8dcd179a 100644 --- a/libs/fixtures/src/data/electionMinimalExhaustiveSample/index.ts +++ b/libs/fixtures/src/data/electionMinimalExhaustiveSample/index.ts @@ -7,6 +7,7 @@ export * as standardCvrFile from './cvrFiles/standard.jsonl'; export * as standardLiveCvrFile from './cvrFiles/standard.live.jsonl'; export * as partial1CvrFile from './cvrFiles/partial1.jsonl'; export * as partial2CvrFile from './cvrFiles/partial2.jsonl'; +export * as standardCdfCvrReport from './cdf-cvr-files/standard'; export const cvrData = standardCvrsAsText(); export const liveCvrsData = standardLiveCvrsAsText(); diff --git a/libs/res-to-ts/src/cli.test.ts b/libs/res-to-ts/src/cli.test.ts index 353444036..44d58c85a 100644 --- a/libs/res-to-ts/src/cli.test.ts +++ b/libs/res-to-ts/src/cli.test.ts @@ -370,6 +370,42 @@ test('convert Election JSON adjacent', async () => { expect(content).not.toContain(`export async function asImage()`); }); +test('convert directory', async () => { + const electionPath = fileSync({ template: 'election-XXXXXX.json' }).name; + await fs.writeFile(electionPath, '{}'); + + const directory = dirSync({ template: 'dir-XXXXXX' }); + const directoryPath = directory.name; + + const stdio: Stdio = { + stdin: fakeReadable(), + stdout: fakeWritable(), + stderr: fakeWritable(), + }; + + const electionOutputPath = getOutputPath(electionPath); + const directoryOutputPath = getOutputPath(directoryPath); + const exitCode = await main( + ['node', '/path/to/res-to-ts', electionPath, `${directoryPath}*`], + stdio + ); + expect({ + exitCode, + stdout: stdio.stdout.toString(), + stderr: stdio.stderr.toString(), + }).toEqual({ + exitCode: 0, + stdout: `šŸ“ ${relativize( + electionOutputPath, + process.cwd() + )}\nšŸ“ ${relativize(directoryOutputPath, process.cwd())}\n`, + stderr: '', + }); + + const content = await fs.readFile(directoryOutputPath, 'utf8'); + expect(content).toContain('export function asDirectoryPath(): string {'); +}); + test('convert unknown type adjacent', async () => { const path = fileSync({ template: 'XXXXXX' }).name; await fs.writeFile(path, 'content'); diff --git a/libs/res-to-ts/src/cli.ts b/libs/res-to-ts/src/cli.ts index bf74e8597..24ec4e11c 100644 --- a/libs/res-to-ts/src/cli.ts +++ b/libs/res-to-ts/src/cli.ts @@ -176,23 +176,24 @@ async function parseOptions( rootDir = process.cwd(); } - for (const glob of globs) { - for (const path of await globby(glob, { absolute: true })) { - if (rootDir && !path.startsWith(`${rootDir}/`)) { - return { - type: 'error', - error: new Error( - `resource '${path}' is not in the root directory '${rootDir}'` - ), - }; - } - - resources.push({ - path, - tsPath: getOutputPath(path, rootDir, outDir), - mimeType: getMimeType(path), - }); + for (const path of await globby(globs, { + absolute: true, + onlyFiles: false, + })) { + if (rootDir && !path.startsWith(`${rootDir}/`)) { + return { + type: 'error', + error: new Error( + `resource '${path}' is not in the root directory '${rootDir}'` + ), + }; } + + resources.push({ + path, + tsPath: getOutputPath(path, rootDir, outDir), + mimeType: getMimeType(path), + }); } if (resources.length === 0) { diff --git a/libs/res-to-ts/src/convert.test.ts b/libs/res-to-ts/src/convert.test.ts new file mode 100644 index 000000000..21bb83ac4 --- /dev/null +++ b/libs/res-to-ts/src/convert.test.ts @@ -0,0 +1,50 @@ +import fs from 'fs'; +import { basename } from 'path'; +import tmp from 'tmp'; +import { convert } from './convert'; + +test('creating a resource for a directory', async () => { + fs.mkdirSync('/tmp/data/electionFixture/cvr-files', { recursive: true }); + const tmpDirName = tmp.dirSync({ + template: '/tmp/data/electionFixture/cvr-files/resource-XXXXXX', + }).name; + const result = await convert({ + path: tmpDirName, + tsPath: '/tmp/src/data/electionFixture/cvr-files/resource.ts', + mimeType: 'application/octet-stream', + }); + const tmpDirBaseName = basename(tmpDirName); + expect(result).toContain(tmpDirBaseName); + expect(result.replace(tmpDirBaseName, 'resource')).toMatchInlineSnapshot(` + "/* Generated by res-to-ts. DO NOT EDIT */ + /* eslint-disable */ + /* istanbul ignore file */ + + import * as fs from 'fs'; + import { tmpdir } from 'os'; + import { resolve, sep } from 'path'; + + const copiedDirectories: string[] = []; + + if (typeof jest !== 'undefined') { + afterAll(() => { + for (const copiedDirectory of copiedDirectories) { + fs.rmSync(copiedDirectory, { recursive: true, force: true }); + } + }); + } + + export function asDirectoryPath(): string { + const tmpDir = fs.mkdtempSync(tmpdir() + sep); + const resolved = resolve( + __dirname, + '../../../../data/electionFixture/cvr-files/resource' + ); + fs.cpSync(resolved, tmpDir, { recursive: true }); + copiedDirectories.push(tmpDir); + return tmpDir; + } + + " + `); +}); diff --git a/libs/res-to-ts/src/convert.ts b/libs/res-to-ts/src/convert.ts index ccc73d0fb..830dbb823 100644 --- a/libs/res-to-ts/src/convert.ts +++ b/libs/res-to-ts/src/convert.ts @@ -1,6 +1,6 @@ import { promises as fs } from 'fs'; import { sha256 } from 'js-sha256'; -import { parse, relative } from 'path'; +import { dirname, parse, relative } from 'path'; import { isImageMimeType, isTextMimeType } from './mime'; /** @@ -12,10 +12,57 @@ export interface Resource { readonly mimeType: string; } +/** + * Returns a TypeScript file that provides access to a directory resource + * via an `asDirectoryPath` method. When called, the method will copy the + * directory contents into a temporary directory and return its path. + */ +function getTypeScriptForDirectoryResource(path: string, tsPath: string) { + return `/* Generated by res-to-ts. DO NOT EDIT */ +/* eslint-disable */ +/* istanbul ignore file */ + +import * as fs from 'fs'; +import { tmpdir } from 'os'; +import { resolve, sep } from 'path'; + +const copiedDirectories: string[] = []; + +if (typeof jest !== 'undefined') { + afterAll(() => { + for (const copiedDirectory of copiedDirectories) { + fs.rmSync(copiedDirectory, { recursive: true, force: true }); + } + }); +} + +export function asDirectoryPath(): string { + const tmpDir = fs.mkdtempSync(tmpdir() + sep); + const resolved = resolve( + __dirname, + '${relative(dirname(tsPath), path)}' + ); + fs.cpSync(resolved, tmpDir, { recursive: true }); + copiedDirectories.push(tmpDir); + return tmpDir; +} + +`; +} + /** * Converts a resource to be readable as a TypeScript file. */ -export async function convert({ path, mimeType }: Resource): Promise { +export async function convert({ + path, + mimeType, + tsPath, +}: Resource): Promise { + // Special casing for directories, as we don't embed the contents into the file + if ((await fs.lstat(path)).isDirectory()) { + return getTypeScriptForDirectoryResource(path, tsPath); + } + const pathParts = parse(path); const relativePath = relative(process.cwd(), path); const isImageResource = isImageMimeType(mimeType); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9d7130e95..d521de224 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1953,7 +1953,9 @@ importers: '@types/jest': ^27.0.3 '@types/micromatch': ^4.0.2 '@types/node': 16.11.29 + '@types/stream-chain': ^2.0.1 '@types/stream-chopper': workspace:* + '@types/stream-json': ^1.7.3 '@types/tmp': ^0.2.3 '@typescript-eslint/eslint-plugin': ^5.37.0 '@typescript-eslint/parser': ^5.37.0 @@ -1985,7 +1987,9 @@ importers: prettier: ^2.6.2 readline: ^1.3.0 sort-package-json: ^1.50.0 + stream-chain: ^2.2.5 stream-chopper: ^3.0.1 + stream-json: ^1.7.5 tmp: ^0.2.1 ts-jest: ^27.0.7 typescript: 4.6.3 @@ -2001,14 +2005,18 @@ importers: debug: 4.3.4 micromatch: 4.0.5 readline: 1.3.0 + stream-chain: 2.2.5 stream-chopper: 3.0.1 + stream-json: 1.7.5 zod: 3.14.4 devDependencies: '@types/debug': 4.1.7 '@types/jest': 27.4.1 '@types/micromatch': 4.0.2 '@types/node': 16.11.29 + '@types/stream-chain': 2.0.1 '@types/stream-chopper': link:../@types/stream-chopper + '@types/stream-json': 1.7.3 '@types/tmp': 0.2.3 '@typescript-eslint/eslint-plugin': 5.49.0_rl4vfvvb32d4rquxp7auin2by4 '@typescript-eslint/parser': 5.49.0_2owex2qphpdtje5ztrbqluisqa @@ -8651,7 +8659,7 @@ packages: '@storybook/csf-plugin': 7.0.0-beta.31 '@storybook/csf-tools': 7.0.0-beta.31 '@storybook/global': 5.0.0 - '@storybook/mdx2-csf': 1.0.0-next.5 + '@storybook/mdx2-csf': 1.0.0-next.6 '@storybook/node-logger': 7.0.0-beta.31 '@storybook/postinstall': 7.0.0-beta.31 '@storybook/preview-api': 7.0.0-beta.31 @@ -8949,7 +8957,7 @@ packages: '@storybook/client-logger': 7.0.0-beta.31 '@storybook/core-common': 7.0.0-beta.31 '@storybook/csf-plugin': 7.0.0-beta.31 - '@storybook/mdx2-csf': 1.0.0-next.5 + '@storybook/mdx2-csf': 1.0.0-next.6 '@storybook/node-logger': 7.0.0-beta.31 '@storybook/preview': 7.0.0-beta.31 '@storybook/preview-api': 7.0.0-beta.31 @@ -9290,8 +9298,8 @@ packages: resolution: {integrity: sha512-cNkJEds7542Dj6k/oxm3jx0ZddyxUVz/2qQ2sQjz/qy4a6K+vFfMMLHuJEKKTl+26nqqCgia+sfFyCtzUzXr8g==} dev: true - /@storybook/mdx2-csf/1.0.0-next.5: - resolution: {integrity: sha512-02w0sgGZaK1agT050yCVhJ+o4rLHANWvLKWjQjeAsYbjneLC5ITt+3GDB4jRiWwJboZ8dHW1fGSK1Vg5fA34aQ==} + /@storybook/mdx2-csf/1.0.0-next.6: + resolution: {integrity: sha512-m6plojocU/rmrqWd26yvm8D+oHZPZ6PtSSFmZIgpNDEPVmc8s4fBD6LXOAB5MiPI5f8KLUr2HVhOMZ97o5pDTw==} dev: true /@storybook/node-logger/7.0.0-beta.31: @@ -10479,6 +10487,19 @@ packages: /@types/stack-utils/2.0.1: resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} + /@types/stream-chain/2.0.1: + resolution: {integrity: sha512-D+Id9XpcBpampptkegH7WMsEk6fUdf9LlCIX7UhLydILsqDin4L0QT7ryJR0oycwC7OqohIzdfcMHVZ34ezNGg==} + dependencies: + '@types/node': 18.11.18 + dev: true + + /@types/stream-json/1.7.3: + resolution: {integrity: sha512-Jqsyq5VPOTWorvEmzWhEWH5tJnHA+bB8vt/Zzb11vSDj8esfSHDMj2rbVjP0mfJQzl3YBJSXBBq08iiyaBK3KA==} + dependencies: + '@types/node': 18.11.18 + '@types/stream-chain': 2.0.1 + dev: true + /@types/styled-components/5.1.9: resolution: {integrity: sha512-kbEG6YlwK8rucITpKEr6pA4Ho9KSQHUUOzZ9lY3va1mtcjvS3D0wDciFyHEiNHKLL/npZCKDQJqm0x44sPO9oA==} dependencies: @@ -17505,7 +17526,7 @@ packages: '@typescript-eslint/eslint-plugin': 5.37.0_clqnhij63k7sxivgn64qsibvv4 '@typescript-eslint/utils': 5.22.0_2owex2qphpdtje5ztrbqluisqa eslint: 8.23.1 - jest: 27.3.1 + jest: 27.3.1_canvas@2.9.1 transitivePeerDependencies: - supports-color - typescript @@ -29793,6 +29814,10 @@ packages: readable-stream: 3.6.0 dev: false + /stream-chain/2.2.5: + resolution: {integrity: sha512-1TJmBx6aSWqZ4tx7aTpBDXK0/e2hhcNSTV8+CbFJtDjbb+I1mZ8lHit0Grw9GRT+6JbIrrDd8esncgBi8aBXGA==} + dev: false + /stream-chopper/3.0.1: resolution: {integrity: sha512-f7h+ly8baAE26iIjcp3VbnBkbIRGtrvV0X0xxFM/d7fwLTYnLzDPTXRKNxa2HZzohOrc96NTrR+FaV3mzOelNA==} dependencies: @@ -29820,6 +29845,12 @@ packages: to-arraybuffer: 1.0.1 xtend: 4.0.2 + /stream-json/1.7.5: + resolution: {integrity: sha512-NSkoVduGakxZ8a+pTPUlcGEeAGQpWL9rKJhOFCV+J/QtdQUEU5vtBgVg6eJXn8JB8RZvpbJWZGvXkhz70MLWoA==} + dependencies: + stream-chain: 2.2.5 + dev: false + /stream-shift/1.0.1: resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==} @@ -30806,7 +30837,7 @@ packages: '@types/jest': 27.0.3 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.3.1 + jest: 27.3.1_canvas@2.9.1 jest-util: 27.3.1 json5: 2.2.0 lodash.memoize: 4.1.2 diff --git a/vxsuite.code-workspace b/vxsuite.code-workspace index 44ca3ee15..a91ebdd2c 100644 --- a/vxsuite.code-workspace +++ b/vxsuite.code-workspace @@ -52,6 +52,10 @@ "name": "libs/auth", "path": "libs/auth" }, + { + "name": "libs/backend", + "path": "libs/backend" + }, { "name": "libs/ballot-encoder", "path": "libs/ballot-encoder" @@ -76,10 +80,6 @@ "name": "libs/cvr-fixture-generator", "path": "libs/cvr-fixture-generator" }, - { - "name": "libs/backend", - "path": "libs/backend" - }, { "name": "libs/db", "path": "libs/db"